texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[6359] allow superscript and subscript in a def line in docbook output


From: Gavin D. Smith
Subject: [6359] allow superscript and subscript in a def line in docbook output
Date: Wed, 24 Jun 2015 11:12:26 +0000

Revision: 6359
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=6359
Author:   gavin
Date:     2015-06-24 11:12:25 +0000 (Wed, 24 Jun 2015)
Log Message:
-----------
allow superscript and subscript in a def line in docbook output

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/tp/Texinfo/Convert/DocBook.pm

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2015-06-23 20:14:49 UTC (rev 6358)
+++ trunk/ChangeLog     2015-06-24 11:12:25 UTC (rev 6359)
@@ -1,3 +1,9 @@
+2015-06-24  Gavin Smith  <address@hidden>
+
+       * tp/Texinfo/Convert/DocBook.pm (@inline_elements): Add 
+       'subscript' and 'superscript' so they can show up in a @def* 
+       line.  Bug report from Per Bothner.
+
 2015-06-23  Gavin Smith  <address@hidden>
 
        * info/t/Init-inter.inc (run_ginfo): Remove delay if PID of 

Modified: trunk/tp/Texinfo/Convert/DocBook.pm
===================================================================
--- trunk/tp/Texinfo/Convert/DocBook.pm 2015-06-23 20:14:49 UTC (rev 6358)
+++ trunk/tp/Texinfo/Convert/DocBook.pm 2015-06-24 11:12:25 UTC (rev 6359)
@@ -121,7 +121,8 @@
 );
 
 my @inline_elements = ('emphasis', 'abbrev', 'acronym', 'link', 
-  'inlinemediaobject', 'firstterm', 'footnote', 'replaceable', 'wordasword');
+  'inlinemediaobject', 'firstterm', 'footnote', 'replaceable',
+  'subscript', 'superscript', 'wordasword');
 my %inline_elements;
 foreach my $inline_element (@inline_elements) {
   $inline_elements{$inline_element} = 1;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]