module Soywiki
Constants
- HYPERLINK
- SCHEMES
- VERSION
- WIKI_WORD
Public Class Methods
html_export(markdown, relative_soyfile)
click to toggle source
# File lib/soywiki.rb, line 97 def self.html_export(markdown, relative_soyfile) require 'soywiki/html' Html.export(markdown, relative_soyfile) end
run()
click to toggle source
# File lib/soywiki.rb, line 10 def self.run require 'getoptlong' opts = GetoptLong.new( [ '--help', '-h', GetoptLong::NO_ARGUMENT], [ '--version', '-v', GetoptLong::NO_ARGUMENT], [ '--html', GetoptLong::NO_ARGUMENT], [ '--markdown', GetoptLong::NO_ARGUMENT], [ '--absolute', GetoptLong::NO_ARGUMENT], [ '--relative', GetoptLong::NO_ARGUMENT], [ '--install-plugin', GetoptLong::NO_ARGUMENT], [ '--page', GetoptLong::REQUIRED_ARGUMENT], [ '--index', GetoptLong::REQUIRED_ARGUMENT], ) usage =->(version_only=false) do puts "soywiki #{Soywiki::VERSION}" puts "by Daniel Choi dhchoi@gmail.com" exit if version_only puts puts <<-END --- Usage: soywiki Run the command in a directory you've made to contain soywiki files. Soywiki will open the most recently modified wiki file or create a file called main/HomePage. Parse to html: --html assume that wiki-files are in markdown syntax: --markdown replace default haml-page-template with the one supplied: --page template-file replace default haml-index-template with the one supplied: --index template-file --absolute generate absolute file://-style links --relative generate relative ../-style links Install the soywiki vim plugin: --install-plugin Show this help: [--help, -h] Show version info: [--version, -v] --- END exit end install_plugin = false html = false md = false index = page = nil relative_soyfile = false opts.each do |opt, arg| case opt when '--help' then usage[] when '--version' then usage[true] when '--html' then html = true when '--markdown' then md = true when '--install-plugin' then install_plugin = true when '--page' then page = arg when '--index' then index = arg when '--absolute' then relative_soyfile = false when '--relative' then relative_soyfile = true end end self.set_substitute %{INDEX_PAGE_TEMPLATE_SUB}.to_sym, index if index self.set_substitute %{PAGE_TEMPLATE_SUB}.to_sym, page if page self.html_export(md, relative_soyfile) if html if install_plugin require 'erb' plugin_template = File.read(File.join(File.dirname(__FILE__), 'plugin.erb')) vimscript_file = File.join(File.dirname(__FILE__), 'soywiki.vim') plugin_body = ERB.new(plugin_template).result(binding) `mkdir -p #{ENV['HOME']}/.vim/plugin` File.open("#{ENV['HOME']}/.vim/plugin/soywiki_starter.vim", "w") {|f| f.write plugin_body} else vim = ENV['SOYWIKI_VIM'] || 'vim' vimscript = File.expand_path("../soywiki.vim", __FILE__) vim_command = "#{vim} -S #{vimscript}" exec vim_command end unless html end
set_substitute(const, substitute_path)
click to toggle source
# File lib/soywiki.rb, line 102 def self.set_substitute const, substitute_path substitute = File.read(substitute_path) Template_Substitution.const_set const.to_sym, substitute end