haml
来自「用ruby on rails写的一个博客程序,还不错..ruby on rail」· 代码 · 共 19 行
TXT
19 行
#!/usr/bin/env ruby# The command line Haml parser.if ARGV[0] == "--help" or ARGV[0] == "-h" or ARGV[0] == "-?" puts <<ENDUsage: haml (template file) (output file)Description: Uses the Haml engine to parse the specified template and outputs the result to the specified file.ENDelse require File.join(File.dirname(__FILE__), '..', 'lib', 'haml', 'engine') template = File.read(ARGV[0]) result = Haml::Engine.new(template).to_html File.open(ARGV[1], "w") { |f| f.write(result) }end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?