[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
From: |
Patrice Dumas |
Date: |
Sat, 30 Dec 2023 13:06:24 -0500 (EST) |
branch: master
commit 3fa12c3833f97357c35d5ad4e5941dc258ef651e
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Sat Dec 30 16:32:26 2023 +0100
* tp/Texinfo/XS/convert/convert_html.c
(default_format_special_body_footnotes)
(special_unit_body_internal_formatting_table): implement
format_special_body_footnotes.
---
ChangeLog | 7 +++++++
tp/Texinfo/XS/convert/convert_html.c | 11 +++++++++++
2 files changed, 18 insertions(+)
diff --git a/ChangeLog b/ChangeLog
index 5b560cc9b1..06b0289568 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,6 +10,13 @@
test results to meaningless values. If these offsets needed to be
tested, a separate Info output file would have to be used instead.
+2023-12-30 Patrice Dumas <pertusus@free.fr>
+
+ * tp/Texinfo/XS/convert/convert_html.c
+ (default_format_special_body_footnotes)
+ (special_unit_body_internal_formatting_table): implement
+ format_special_body_footnotes.
+
2023-12-30 Patrice Dumas <pertusus@free.fr>
* tp/Texinfo/XS/convert/convert_html.c
diff --git a/tp/Texinfo/XS/convert/convert_html.c
b/tp/Texinfo/XS/convert/convert_html.c
index e8bd79af0e..c24c965736 100644
--- a/tp/Texinfo/XS/convert/convert_html.c
+++ b/tp/Texinfo/XS/convert/convert_html.c
@@ -10973,10 +10973,21 @@ default_format_special_body_shortcontents (CONVERTER
*self,
free (shortcontents);
}
+void
+default_format_special_body_footnotes (CONVERTER *self,
+ const size_t special_unit_number,
+ const char *special_unit_variety,
+ const OUTPUT_UNIT *output_unit,
+ TEXT *result)
+{
+ format_footnotes_sequence (self, result);
+}
+
static SPECIAL_UNIT_BODY_INTERNAL_CONVERSION
special_unit_body_internal_formatting_table[] = {
{"contents", &default_format_special_body_contents},
{"shortcontents", &default_format_special_body_shortcontents},
+ {"footnotes", &default_format_special_body_footnotes},
{0, 0},
};