Sha256: 015547d8a9d7a632137e10299007adde901adc3e5e490427c1b8b43451968412
Contents?: true
Size: 556 Bytes
Versions: 22
Compression:
Stored size: 556 Bytes
Contents
# -*- coding: utf-8 -*- # src.rb # # src: 外部ファイルを挿入する(HTMLエスケープ付き) # パラメタ: # file: ファイル名 # # Copyright (c) 2005 TADA Tadashi <sho@spc.gr.jp> # You can distribute this file under the GPL2. # def src( file ) h( File::readlines( file ).join ) end # # src_inline: テキストを挿入する(HTMLエスケープ付き) # # パラメタ: テキスト文字列 # def src_inline( str ) h( str ) end # Local Variables: # mode: ruby # indent-tabs-mode: t # tab-width: 3 # ruby-indent-level: 3 # End:
Version data entries
22 entries across 22 versions & 1 rubygems