diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2022-09-15 12:07:27 +0200 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2022-09-15 12:20:28 +0200 |
commit | eafaf14b790e1e7ca94ddcfa35659a0d53765ebd (patch) | |
tree | fa33516ed2f610c81a87c4e6df5ba45a824547b0 /textproc/docbook2mdoc/files/patch-node.c | |
parent | sysutils/waynergy: update to 0.0.13 (diff) |
textproc/docbook2mdoc: patch to support <address>
The xdg-utils docbook uses a "address" tag, this allows to use
docbook2mdoc to convert xdg-utils docbook files to manpages or
text files
Diffstat (limited to '')
-rw-r--r-- | textproc/docbook2mdoc/files/patch-node.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/textproc/docbook2mdoc/files/patch-node.c b/textproc/docbook2mdoc/files/patch-node.c new file mode 100644 index 000000000000..5e02c91231a9 --- /dev/null +++ b/textproc/docbook2mdoc/files/patch-node.c @@ -0,0 +1,10 @@ +--- node.c.orig 2022-09-15 07:09:04 UTC ++++ node.c +@@ -33,6 +33,7 @@ static const struct nodeprop properties[] = { + + static const struct nodeprop properties[] = { + { "abstract", CLASS_BLOCK }, ++ { "address", CLASS_LINE }, + { "appendix", CLASS_BLOCK }, + { "arg", CLASS_ENCL }, + { "author", CLASS_LINE }, |