概要 simple-templtateはJavaScript用のシンプルなテンプレートライブラリです。 $# から # の間に任意のJavaScriptの式を記述できます。(eval関数によって評価されます) parseする際に指定したコンテキストオブジェクトを式の中から参照できます。 簡単な例は以下のようになります。(サンプルページ) <div id="template-id"> $# 3 * 8 # //24<br> $# message1 # $# message2.text # //Hello World </div> <script type="text/javascript"> var t = new SimpleTemplate(); var html = t.parse("template-id", {message1:"Hello", message2:{text:"W