1<?xml version="1.0" encoding="US-ASCII"?>
2<!DOCTYPE html [
3<!ENTITY rfc1847 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC1847.xml">
4<!ENTITY mdash "&#2014;">
5<!ENTITY ndash  "&#8211;"><!-- U+2013 EN DASH                                    ("-")                -->
6<!ENTITY other "<foo>some text</foo>">
7]>
8
9<root>
10  <t>
11    There is some text with &mdash; a jump to the &ndash; length of a dash
12  </t>
13  &rfc1847;
14  &other;
15  <t>
16    Play with a different issue of &mdash; for going hard.
17  </t>
18</root>
  • <?xml version="1.0" encoding="US-ASCII"?>
  • <!DOCTYPE root>
  • <root>
    • <t>
      • There is some text with &mdash; a jump to the &ndash; length of lengtho f a dash
      • </t>
    • &rfc1847;
    • &other;
    • &rfc1847;
    • <t>
      • Play with a different issue of &mdash; for going hard.
      • </t>
    • </root>
1<?xml version="1.0" encoding="US-ASCII"?>
2<!DOCTYPE html [
3<!ENTITY rfc1847 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC1847.xml">
4<!ENTITY mdash "&#2014;">
5<!ENTITY ndash  "&#8211;"><!-- U+2013 EN DASH                                    ("-")                -->
6<!ENTITY other "<foo>some text</foo>">
7]>
8
9<root>
10  <t>
11    There is some text with &mdash; a jump to the &ndash; lengtho f a dash
12  </t>
13  &other;
14  &rfc1847;
15  <t>
16    Play with a different issue of &#x2014; for going hard.
17  </t>
18</root>