source@mandoc.bsd.lv
 help / color / mirror / Atom feed
* docbook2mdoc: The is no perfect way to render <footnote> in mdoc(7).
@ 2019-04-14 21:11 schwarze
  0 siblings, 0 replies; only message in thread
From: schwarze @ 2019-04-14 21:11 UTC (permalink / raw)
  To: source

Log Message:
-----------
The is no perfect way to render <footnote> in mdoc(7).
For now, use .Bo/.Bc as a full block.

Modified Files:
--------------
    docbook2mdoc:
        docbook2mdoc.c
        node.c
        statistics.c

Revision Data
-------------
Index: statistics.c
===================================================================
RCS file: /home/cvs/mdocml/docbook2mdoc/statistics.c,v
retrieving revision 1.30
retrieving revision 1.31
diff -Lstatistics.c -Lstatistics.c -u -p -r1.30 -r1.31
--- statistics.c
+++ statistics.c
@@ -426,6 +426,7 @@ main(int argc, char *argv[])
 		table_add("filename", "TEXT");
 		table_add("firstname", "TEXT");
 		table_add("firstterm", "TEXT");
+		table_add("footnote", "para");
 		table_add("funcdef", "function");
 		table_add("funcdef", "TEXT");
 		table_add("funcprototype", "funcdef");
Index: docbook2mdoc.c
===================================================================
RCS file: /home/cvs/mdocml/docbook2mdoc/docbook2mdoc.c,v
retrieving revision 1.124
retrieving revision 1.125
diff -Ldocbook2mdoc.c -Ldocbook2mdoc.c -u -p -r1.124 -r1.125
--- docbook2mdoc.c
+++ docbook2mdoc.c
@@ -140,6 +140,7 @@ pnode_printpara(struct format *f, struct
 
 	switch (np->node) {
 	case NODE_ENTRY:
+	case NODE_FOOTNOTE:
 	case NODE_GLOSSTERM:
 	case NODE_LISTITEM:
 	case NODE_TERM:
@@ -1096,6 +1097,9 @@ pnode_print(struct format *f, struct pno
 	case NODE_FILENAME:
 		macro_open(f, "Pa");
 		break;
+	case NODE_FOOTNOTE:
+		macro_line(f, "Bo");
+		break;
 	case NODE_FUNCTION:
 		macro_open(f, "Fn");
 		break;
@@ -1279,6 +1283,9 @@ pnode_print(struct format *f, struct pno
 	case NODE_TEXT:
 		/* Accept more arguments to the previous macro. */
 		return;
+	case NODE_FOOTNOTE:
+		macro_line(f, "Bc");
+		break;
 	case NODE_INFORMALEQUATION:
 		macro_line(f, "EN");
 		macro_line(f, "Ed");
Index: node.c
===================================================================
RCS file: /home/cvs/mdocml/docbook2mdoc/node.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -Lnode.c -Lnode.c -u -p -r1.16 -r1.17
--- node.c
+++ node.c
@@ -58,7 +58,7 @@ static	const struct nodeprop properties[
 	{ "fieldsynopsis",	CLASS_TRANS },
 	{ "filename",		CLASS_LINE },
 	{ "firstterm",		CLASS_LINE },
-	{ "footnote",		CLASS_TRANS },
+	{ "footnote",		CLASS_BLOCK },
 	{ "funcdef",		CLASS_BLOCK },
 	{ "funcprototype",	CLASS_BLOCK },
 	{ "funcsynopsis",	CLASS_TRANS },
--
 To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2019-04-14 21:11 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-14 21:11 docbook2mdoc: The is no perfect way to render <footnote> in mdoc(7) schwarze

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).