diff --git a/etc/ChangeLog b/etc/ChangeLog index 78e9366e34..8742e2afc1 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog @@ -1,3 +1,7 @@ +2020-01-15 Simon Marchi + + * texi2pod.pl: Handle @t{...} tags. + 2018-06-19 Simon Marchi * configure.in: Remove AC_PREREQ. diff --git a/etc/texi2pod.pl b/etc/texi2pod.pl index b0540338c8..8d92bcf602 100644 --- a/etc/texi2pod.pl +++ b/etc/texi2pod.pl @@ -381,6 +381,7 @@ sub postprocess s/\@file\{([^\}]*)\}/F<$1>/g; s/\@w\{([^\}]*)\}/S<$1>/g; s/\@(?:dmn|math)\{([^\}]*)\}/$1/g; + s/\@t\{([^\}]*)\}/$1/g; # keep references of the form @ref{...}, print them bold s/\@(?:ref)\{([^\}]*)\}/B<$1>/g;