pandoc/test/fb2/basic.fb2
Alexander Krotov 2e13c0a451 FB2 writer: do not wrap note references into <sup> and brackets
Existing FB2 readers, such as FBReader, already display links with type="note" as a superscript.
2019-05-15 13:31:07 +03:00

73 lines
1.3 KiB
XML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?xml version="1.0" encoding="UTF-8"?>
<FictionBook xmlns="http://www.gribuser.ru/xml/fictionbook/2.0" xmlns:l="http://www.w3.org/1999/xlink">
<description>
<title-info>
<genre>unrecognised</genre>
</title-info>
<document-info>
<program-used>pandoc</program-used>
</document-info>
</description>
<body>
<title>
<p />
</title>
<section id="top-level-title">
<title>
<p>Top-level title</p>
</title>
<section id="section">
<title>
<p>Section</p>
</title>
<section id="subsection">
<title>
<p>Subsection</p>
</title>
<p>This <emphasis>emphasized</emphasis> <strong>strong</strong> <code>verbatim</code> markdown.
See this <a l:href="http://example.com/">link</a>.</p>
<p>Ordered list:</p>
<p>1. one</p>
<p>2. two</p>
<p>3. three</p>
<cite>
<p>Blockquote
is
for
citatons.</p>
</cite>
<empty-line />
<p>
<code>Code</code>
</p>
<p>
<code>block</code>
</p>
<p>
<code>is</code>
</p>
<p>
<code>for</code>
</p>
<p>
<code>code.</code>
</p>
<empty-line />
<p>
<strikethrough>Strikeout</strikethrough> is Pandocs extension.
Superscript and subscripts too: H<sub>2</sub>O is a liquid<a l:href="#n1" type="note">[1]</a>.
2<sup>10</sup> is 1024.</p>
<p>Math is another Pandoc extension: <code>E = m c^2</code>.</p>
</section>
</section>
</section>
</body>
<body name="notes">
<section id="n1">
<title>
<p>1</p>
</title>
<p>Sometimes.</p>
</section>
</body>
</FictionBook>