# こんな感じにHTMLへの変換をしてくれるプログラムが
[name]hoge.html
[encode]Shift_JIS
[css]hoge.css
[js]hoge.js foo.js bar.js
[title]テストタイトル
[body]
[headline1:class1]テスト
[bar]
[line]テーブルのテスト
[table]
[header]
[]ID[]名前[]年齢
[]1[:class2]よしおか[]23
[]2[:class2]たけだ[]35
[emptyline]
[text]
テキスト
のテスト
[textend]
[block]
ブロック
のテスト
[blockend]
[emptyline]2
[line::id1]IDを付ける
[emptyline]
[link]1行リンク
http://e...content-available-to-author-only...e.com/
[emptyline]
[image]hoge.png
[emptyline]
[line+]次につづく
[link]リンク
http://e...content-available-to-author-only...e.com/
[+line]一連の文字列
[emptyline]
[imagelink]hoge.png
http://e...content-available-to-author-only...e.com/
[emptyline]
[line]リンク名省略
[link]
http://e...content-available-to-author-only...e.com/
↓ 変換後 hoge.htmlに保存
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<link rel="stylesheet" type="text/css" href="hoge.css">
<script language="javascript" type="text/javascript" src="hoge.js"></script>
<script language="javascript" type="text/javascript" src="foo.js"></script>
<script language="javascript" type="text/javascript" src="bar.js"></script>
<title>テストタイトル</title>
</head>
<body>
<h1 class="class1">テスト</h1>
<hr>
<div>テーブルのテスト</div>
<table>
<tbody>
<tr><th>ID</th><th>名前</th><th>年齢</th></tr>
<tr><td>1</td><td class="class2"]>よしおか</td><td>23</td></tr>
<tr>2</td><td class="class2">たけだ</td><td>35</td></tr>
</tbody>
</table>
<br>
<pre>テキスト
のテスト</pre>
<div>ブロック<br>
<br>
のテスト</div>
<br><br>
<div id="id1">IDを付ける</div>
<br>
<div><a href="http://e...content-available-to-author-only...e.com">1行リンク</a></div>
<br>
<div><img src="hoge.png"></div>
<br>
<div><span>次につづく</span><span><a href="http://e...content-available-to-author-only...e.com/">リンク</a></span><span>一連の文字列</span></div>
<br>
<div><a href="http://e...content-available-to-author-only...e.com"><img src="hoge.png"></a></div>
<br>
<div>リンク名省略</div>
<div><a href="http://e...content-available-to-author-only...e.com/">http://e...content-available-to-author-only...e.com/</a></div>
</body>
</html>