diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2018-06-25 13:26:57 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2018-06-25 13:26:57 +0000 |
commit | ceca0aad422b51d66851e4ee8e6521e30ff86041 (patch) | |
tree | 2837eededffbb0a4e3c8e36ffaa4232a6042210f | |
parent | 07fb51c1fa33fa0b6a742cbb9e5489b2d60ddd32 (diff) | |
download | mandoc-ceca0aad422b51d66851e4ee8e6521e30ff86041.tar.gz |
Delete support for the style=text-indent attribute, which is no longer used.
-rw-r--r-- | html.c | 5 | ||||
-rw-r--r-- | mandoc_html.3 | 4 |
2 files changed, 1 insertions, 8 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: html.c,v 1.101 2018/05/29 02:10:05 schwarze Exp $ */ +/* $Id$ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2011-2015, 2017, 2018 Ingo Schwarze <schwarze@openbsd.org> @@ -714,9 +714,6 @@ print_otag(struct html *h, enum htmltag tag, const char *fmt, ...) case 'h': attr = "height"; break; - case 'i': - attr = "text-indent"; - break; case 'l': attr = "margin-left"; break; diff --git a/mandoc_html.3 b/mandoc_html.3 index b6ddf734..a5411751 100644 --- a/mandoc_html.3 +++ b/mandoc_html.3 @@ -253,10 +253,6 @@ and adds three units for padding between columns. .Pp Style name letters decide what to do with the preceding argument: .Bl -tag -width 1n -offset indent -.It Cm i -Set -.Cm text-indent -to the given length. .It Cm l Set .Cm margin-left |