[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: @tieaccent{..} does not display the tie accent in HTML
From: |
Per Bothner |
Subject: |
Re: @tieaccent{..} does not display the tie accent in HTML |
Date: |
Wed, 1 Sep 2021 21:39:57 -0700 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.11.0 |
I'm thinking a customization variable XML_OUTPUT_MODE
-c XML_OUTPUT_MODE "html"
[current default]
Generate HTML files, with .html file names.
Follow HTML specification and recommendations.
-c XML_OUTPUT_MODE "xhtml"
Generate XHTML files (i.e. XML), with .xhtml file names.
Follow XHTML specification.
-c XML_OUTPUT_MODE "polyglot" [or many "compatible"]
[maybe future default?]
generate HTML files with .html extension, and no <?xml?> declaration,
but in a way that would be XML-compatible - i.e. following "polyglot" markup.
In both "xhtml" and "polyglot" modes we do:
(1) Don't uses named entities except the builtin XML ones.
(2) Close all tags. Where HTML prohibits separate closing tags,
use the XML shorthand, e.g. <hr/> . This works everywhere I've tried it.
--
--Per Bothner
per@bothner.com http://per.bothner.com/
- Re: @tieaccent{..} does not display the tie accent in HTML,
Per Bothner <=