ヘルプ > オーサリング > マークアップの使用 > 無効なマークアップの使用 > 無効なマークアップの例 > 未定義の開始タグと終了タグ
  
未定義の開始タグと終了タグ
この例には、文書インスタンスの文書型で定義されていないタグが含まれています。Arbortext Editor ではこれらのタグおよびすべて完全に定義された属性が保持されます。
<book>
...
<!-- Illegal start tag with no attributes followed by illegal end tag. -->
<badtag>text inside bad tags</badtag>
...
<!-- Illegal tag with attributes (both literal and non-literal strings) -->
<illegal size=20 buyers="My Company.Inc" level=high>
...
<!-- Illegal end tag; all by itself -->
</defunct>
</book>
...
<!-- Illegal start/end tag pair AFTER end-of- instance tag -->
<naughty></naughty>