Sha256: 8e090a88d7825bb001a0bd957d9e3cf049f611c24fef0a1161827c1f9e21ab07
Contents?: true
Size: 577 Bytes
Versions: 9
Compression:
Stored size: 577 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 or any later version. # 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
9 entries across 8 versions & 1 rubygems