forked from telerik/fiddler-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api_sort.rb
42 lines (28 loc) · 1022 Bytes
/
api_sort.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
filename = ARGV.first
def sections_as_key_values(text, re)
text = text.strip
keys = text.scan(re).reject { |value| value.empty? }
values = text.split(re).reject { |value| value.empty? }
raise "keys and values don't match" unless keys.size == values.size
keys.each_with_index.map { |key, index| { :key => key, :value => values[index] } }
end
markdown = File.read(filename)
start = markdown.index("## ")
head = markdown[0..start-1]
markdown = markdown[start..-1]
sections = sections_as_key_values(markdown, /^## .*/)
File.open(filename, "w") do |file|
file.puts(head)
sections.each do |section|
subsections = sections_as_key_values(section[:value], /^### .*/).sort { |a,b| a[:key] <=> b[:key] }
file.puts(section[:key])
file.puts()
subsections.each do |subsection|
file.write(subsection[:key])
file.puts()
file.puts()
file.puts(subsection[:value].strip)
file.puts()
end
end
end