fork download
  1. # こんな感じにHTMLへの変換をしてくれるプログラムが
  2. [name]hoge.html
  3. [encode]Shift_JIS
  4. [css]hoge.css
  5. [js]hoge.js foo.js bar.js
  6. [title]テストタイトル
  7. [body]
  8. [headline1:class1]テスト
  9. [bar]
  10. [line]テーブルのテスト
  11. [table]
  12. [header]
  13. []ID[]名前[]年齢
  14. []1[:class2]よしおか[]23
  15. []2[:class2]たけだ[]35
  16. [emptyline]
  17. [text]
  18. テキスト
  19.  
  20. のテスト
  21. [textend]
  22. [block]
  23. ブロック
  24.  
  25. のテスト
  26. [blockend]
  27. [emptyline]2
  28. [line::id1]IDを付ける
  29. [emptyline]
  30. [link]1行リンク
  31. http://e...content-available-to-author-only...e.com/
  32. [emptyline]
  33. [image]hoge.png
  34. [emptyline]
  35. [line+]次につづく
  36. [link]リンク
  37. http://e...content-available-to-author-only...e.com/
  38. [+line]一連の文字列
  39. [emptyline]
  40. [imagelink]hoge.png
  41. http://e...content-available-to-author-only...e.com/
  42. [emptyline]
  43. [line]リンク名省略
  44. [link]
  45. http://e...content-available-to-author-only...e.com/
  46.  
  47. ↓ 変換後 hoge.htmlに保存
  48.  
  49. <html>
  50. <head>
  51. <meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
  52. <meta http-equiv="Content-Style-Type" content="text/css">
  53. <meta http-equiv="Content-Script-Type" content="text/javascript">
  54. <link rel="stylesheet" type="text/css" href="hoge.css">
  55. <script language="javascript" type="text/javascript" src="hoge.js"></script>
  56. <script language="javascript" type="text/javascript" src="foo.js"></script>
  57. <script language="javascript" type="text/javascript" src="bar.js"></script>
  58. <title>テストタイトル</title>
  59. </head>
  60. <body>
  61. <h1 class="class1">テスト</h1>
  62. <hr>
  63. <div>テーブルのテスト</div>
  64. <table>
  65. <tbody>
  66. <tr><th>ID</th><th>名前</th><th>年齢</th></tr>
  67. <tr><td>1</td><td class="class2"]>よしおか</td><td>23</td></tr>
  68. <tr>2</td><td class="class2">たけだ</td><td>35</td></tr>
  69. </tbody>
  70. </table>
  71. <br>
  72. <pre>テキスト
  73.  
  74. のテスト</pre>
  75. <div>ブロック<br>
  76. <br>
  77. のテスト</div>
  78. <br><br>
  79. <div id="id1">IDを付ける</div>
  80. <br>
  81. <div><a href="http://e...content-available-to-author-only...e.com">1行リンク</a></div>
  82. <br>
  83. <div><img src="hoge.png"></div>
  84. <br>
  85. <div><span>次につづく</span><span><a href="http://e...content-available-to-author-only...e.com/">リンク</a></span><span>一連の文字列</span></div>
  86. <br>
  87. <div><a href="http://e...content-available-to-author-only...e.com"><img src="hoge.png"></a></div>
  88. <br>
  89. <div>リンク名省略</div>
  90. <div><a href="http://e...content-available-to-author-only...e.com/">http://e...content-available-to-author-only...e.com/</a></div>
  91. </body>
  92. </html>
  93.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty