forked from github/markup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarkup.rb
86 lines (73 loc) · 1.78 KB
/
markup.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
begin
require 'open3_detach'
rescue LoadError
require 'open3'
end
module GitHub
module Markup
extend self
@@markups = {}
def render(filename, content = nil)
content ||= File.read(filename)
if proc = renderer(filename)
proc[content]
else
content
end
end
def markup(file, pattern, &block)
require file.to_s
add_markup(pattern, &block)
rescue LoadError
nil
end
def command(command, regexp, &block)
command = command.to_s
if File.exists?(file = File.dirname(__FILE__) + "/commands/#{command}")
command = file
end
add_markup(regexp) do |content|
rendered = execute(command, content)
rendered = rendered.to_s.empty? ? content : rendered
if block && block.arity == 2
# If the block takes two arguments, pass new content and old
# content.
block.call(rendered, content)
elsif block
# One argument is just the new content.
block.call(rendered)
else
# No block? No problem!
rendered
end
end
end
def add_markup(regexp, &block)
@@markups[regexp] = block
end
def can_render?(filename)
!!renderer(filename)
end
def renderer(filename)
@@markups.each do |key, value|
if Regexp.compile("\\.(#{key})$") =~ filename
return value
end
end
nil
end
def execute(command, target)
out = ''
Open3.popen3(command) do |stdin, stdout, _|
stdin.puts target
stdin.close
out = stdout.read
end
out.gsub("\r", '')
rescue Errno::EPIPE
""
end
# Define markups
instance_eval File.read(File.dirname(__FILE__) + '/markups.rb')
end
end