legal_markdown 0.1.5 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +2 -2
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/README.md +186 -86
- data/bin/legal2md +7 -0
- data/legal_markdown.gemspec +2 -2
- data/lib/legal_markdown/make_yaml_frontmatter.rb +115 -0
- data/lib/legal_markdown/roman-numerals.rb +77 -0
- data/lib/legal_markdown/version.rb +1 -1
- data/lib/legal_markdown.rb +272 -276
- metadata +16 -26
- data/bin/md2legal +0 -7
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: legal_markdown
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,45 +9,35 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
13
|
-
dependencies:
|
14
|
-
|
15
|
-
name: roman-numerals
|
16
|
-
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
|
-
requirements:
|
19
|
-
- - ! '>='
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
version: '0'
|
22
|
-
type: :runtime
|
23
|
-
prerelease: false
|
24
|
-
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
|
-
requirements:
|
27
|
-
- - ! '>='
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
version: '0'
|
30
|
-
description: ! " This gem will parse YAML Front Matter of Markdown Documents. Typically,
|
12
|
+
date: 2013-07-08 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: ! ' This gem will parse YAML Front Matter of Markdown Documents. Typically,
|
31
15
|
this gem would be called with a md renderer, such as Pandoc, that would turn the
|
32
16
|
md into a document such as a .pdf file or a .docx file. By combining this pre-processing
|
33
17
|
with a markdown renderer, you can ensure that both the structured content and the
|
34
18
|
structured styles necessary for your firm or organization are more strictly enforced.
|
35
|
-
Plus you won't have to deal with Word any longer, and every lawyer should welcome
|
36
|
-
that. Why? Because Word is awful.
|
19
|
+
Plus you won''t have to deal with Word any longer, and every lawyer should welcome
|
20
|
+
that. Why? Because Word is awful.
|
21
|
+
|
22
|
+
'
|
37
23
|
email: caseykuhlman@watershedlegal
|
38
24
|
executables:
|
39
|
-
-
|
25
|
+
- legal2md
|
40
26
|
extensions: []
|
41
27
|
extra_rdoc_files: []
|
42
28
|
files:
|
43
29
|
- .gitignore
|
30
|
+
- .ruby-gemset
|
31
|
+
- .ruby-version
|
44
32
|
- Gemfile
|
45
33
|
- LICENSE
|
46
34
|
- README.md
|
47
35
|
- Rakefile
|
48
|
-
- bin/
|
36
|
+
- bin/legal2md
|
49
37
|
- legal_markdown.gemspec
|
50
38
|
- lib/legal_markdown.rb
|
39
|
+
- lib/legal_markdown/make_yaml_frontmatter.rb
|
40
|
+
- lib/legal_markdown/roman-numerals.rb
|
51
41
|
- lib/legal_markdown/version.rb
|
52
42
|
homepage: http://github.com/compleatang/legal-markdown
|
53
43
|
licenses: []
|
@@ -63,7 +53,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
63
53
|
version: '0'
|
64
54
|
segments:
|
65
55
|
- 0
|
66
|
-
hash:
|
56
|
+
hash: 4167443837518545164
|
67
57
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
68
58
|
none: false
|
69
59
|
requirements:
|
@@ -72,7 +62,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
72
62
|
version: '0'
|
73
63
|
segments:
|
74
64
|
- 0
|
75
|
-
hash:
|
65
|
+
hash: 4167443837518545164
|
76
66
|
requirements: []
|
77
67
|
rubyforge_project:
|
78
68
|
rubygems_version: 1.8.25
|