maruku 0.2

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.
Files changed (60) hide show
  1. data/bin/maruku +25 -0
  2. data/bin/marutex +29 -0
  3. data/docs/Makefile +25 -0
  4. data/docs/char_codes.xml +884 -0
  5. data/docs/color-package-demo.aux +1 -0
  6. data/docs/color-package-demo.log +127 -0
  7. data/docs/color-package-demo.tex +149 -0
  8. data/docs/index.html +74 -0
  9. data/docs/markdown_syntax.aux +13 -0
  10. data/docs/markdown_syntax.html +266 -0
  11. data/docs/markdown_syntax.log +287 -0
  12. data/docs/markdown_syntax.md +920 -0
  13. data/docs/markdown_syntax.out +0 -0
  14. data/docs/markdown_syntax.pdf +0 -0
  15. data/docs/markdown_syntax.tex +1203 -0
  16. data/docs/maruku.aux +13 -0
  17. data/docs/maruku.html +74 -0
  18. data/docs/maruku.log +294 -0
  19. data/docs/maruku.md +394 -0
  20. data/docs/maruku.out +0 -0
  21. data/docs/maruku.pdf +0 -0
  22. data/docs/maruku.tex +548 -0
  23. data/docs/style.css +65 -0
  24. data/docs/todo.md +12 -0
  25. data/lib/maruku.rb +20 -0
  26. data/lib/maruku/parse_block.rb +577 -0
  27. data/lib/maruku/parse_span.rb +336 -0
  28. data/lib/maruku/string_utils.rb +270 -0
  29. data/lib/maruku/structures.rb +31 -0
  30. data/lib/maruku/to_html.rb +430 -0
  31. data/lib/maruku/to_latex.rb +345 -0
  32. data/lib/maruku/to_latex_strings.rb +330 -0
  33. data/tests/abbreviations.md +11 -0
  34. data/tests/blank.md +4 -0
  35. data/tests/code.md +5 -0
  36. data/tests/code2.md +8 -0
  37. data/tests/code3.md +16 -0
  38. data/tests/email.md +4 -0
  39. data/tests/entities.md +19 -0
  40. data/tests/escaping.md +14 -0
  41. data/tests/extra_dl.md +101 -0
  42. data/tests/extra_header_id.md +13 -0
  43. data/tests/extra_table1.md +40 -0
  44. data/tests/footnotes.md +17 -0
  45. data/tests/headers.md +10 -0
  46. data/tests/hrule.md +10 -0
  47. data/tests/images.md +20 -0
  48. data/tests/inline_html.md +35 -0
  49. data/tests/links.md +31 -0
  50. data/tests/list1.md +4 -0
  51. data/tests/list2.md +5 -0
  52. data/tests/list3.md +8 -0
  53. data/tests/lists.md +32 -0
  54. data/tests/lists_ol.md +39 -0
  55. data/tests/misc_sw.md +105 -0
  56. data/tests/one.md +1 -0
  57. data/tests/paragraphs.md +13 -0
  58. data/tests/sss06.md +352 -0
  59. data/tests/test.md +4 -0
  60. metadata +113 -0
@@ -0,0 +1,4 @@
1
+
2
+ $ python
3
+
4
+
metadata ADDED
@@ -0,0 +1,113 @@
1
+ --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.9.0
3
+ specification_version: 1
4
+ name: maruku
5
+ version: !ruby/object:Gem::Version
6
+ version: "0.2"
7
+ date: 2006-12-25 00:00:00 +01:00
8
+ summary: A Markdown interpreter in Ruby
9
+ require_paths:
10
+ - lib
11
+ email: andrea@rubyforge.org
12
+ homepage: http://maruku.rubyforge.org
13
+ rubyforge_project:
14
+ description: Maruku is a Markdown interpreter in Ruby. It features native export to HTML and PDF (via Latex). The output is really beautiful!
15
+ autorequire: maruku
16
+ default_executable:
17
+ bindir: bin
18
+ has_rdoc: false
19
+ required_ruby_version: !ruby/object:Gem::Version::Requirement
20
+ requirements:
21
+ - - ">"
22
+ - !ruby/object:Gem::Version
23
+ version: 0.0.0
24
+ version:
25
+ platform: ruby
26
+ signing_key:
27
+ cert_chain:
28
+ post_install_message:
29
+ authors:
30
+ - Andrea Censi
31
+ files:
32
+ - lib/maruku.rb
33
+ - lib/maruku/parse_block.rb
34
+ - lib/maruku/parse_span.rb
35
+ - lib/maruku/string_utils.rb
36
+ - lib/maruku/structures.rb
37
+ - lib/maruku/to_html.rb
38
+ - lib/maruku/to_latex.rb
39
+ - lib/maruku/to_latex_strings.rb
40
+ - docs/char_codes.xml
41
+ - docs/color-package-demo.aux
42
+ - docs/color-package-demo.log
43
+ - docs/color-package-demo.tex
44
+ - docs/index.html
45
+ - docs/Makefile
46
+ - docs/markdown_syntax.aux
47
+ - docs/markdown_syntax.html
48
+ - docs/markdown_syntax.log
49
+ - docs/markdown_syntax.md
50
+ - docs/markdown_syntax.out
51
+ - docs/markdown_syntax.pdf
52
+ - docs/markdown_syntax.tex
53
+ - docs/maruku.aux
54
+ - docs/maruku.html
55
+ - docs/maruku.log
56
+ - docs/maruku.md
57
+ - docs/maruku.out
58
+ - docs/maruku.pdf
59
+ - docs/maruku.tex
60
+ - docs/style.css
61
+ - docs/todo.md
62
+ - tests/abbreviations.md
63
+ - tests/blank.md
64
+ - tests/code.md
65
+ - tests/code2.md
66
+ - tests/code3.md
67
+ - tests/email.md
68
+ - tests/entities.md
69
+ - tests/escaping.md
70
+ - tests/extra_dl.md
71
+ - tests/extra_header_id.md
72
+ - tests/extra_table1.md
73
+ - tests/footnotes.md
74
+ - tests/headers.md
75
+ - tests/hrule.md
76
+ - tests/images.md
77
+ - tests/inline_html.md
78
+ - tests/links.md
79
+ - tests/list1.md
80
+ - tests/list2.md
81
+ - tests/list3.md
82
+ - tests/lists.md
83
+ - tests/lists_ol.md
84
+ - tests/misc_sw.md
85
+ - tests/one.md
86
+ - tests/paragraphs.md
87
+ - tests/sss06.md
88
+ - tests/test.md
89
+ - bin/maruku
90
+ - bin/marutex
91
+ test_files: []
92
+
93
+ rdoc_options: []
94
+
95
+ extra_rdoc_files: []
96
+
97
+ executables:
98
+ - maruku
99
+ - marutex
100
+ extensions: []
101
+
102
+ requirements: []
103
+
104
+ dependencies:
105
+ - !ruby/object:Gem::Dependency
106
+ name: syntax
107
+ version_requirement:
108
+ version_requirements: !ruby/object:Gem::Version::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: 1.0.0
113
+ version: