mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 11:40:18 +02:00
stexi->shtml: Add support for @i, @math, @tie and @dots.
* module/texinfo/html.scm (tag-replacements): Add support for @i and @math. The tags used come from the texinfo documentation. (rules): Convert @tie and @dots to the appropriate HTML entities.
This commit is contained in:
parent
78b261d376
commit
4c1901b90f
1 changed files with 4 additions and 0 deletions
|
@ -203,9 +203,11 @@ name, @code{#}, and the node name."
|
|||
|
||||
(asis span)
|
||||
(bold b)
|
||||
(i i)
|
||||
(sample samp)
|
||||
(samp samp)
|
||||
(code code)
|
||||
(math em)
|
||||
(kbd kbd)
|
||||
(key code (@ (class "key")))
|
||||
(var var)
|
||||
|
@ -241,6 +243,8 @@ name, @code{#}, and the node name."
|
|||
(cons tag body)))))))
|
||||
(copyright . ,(lambda args '(*ENTITY* "copy")))
|
||||
(result . ,(lambda args '(*ENTITY* "rArr")))
|
||||
(tie . ,(lambda args '(*ENTITY* "nbsp")))
|
||||
(dots . ,(lambda args '(*ENTITY* "hellip")))
|
||||
(xref . ,ref) (ref . ,ref) (pxref . ,ref)
|
||||
(uref . ,uref)
|
||||
(node . ,node) (anchor . ,node)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue