Skip to content
Snippets Groups Projects
Commit 23e97414 authored by Brandon Keepers's avatar Brandon Keepers
Browse files

Remove creole support

parent ad43ec6b
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -7,7 +7,6 @@ gem "kramdown", :platforms => :jruby
gem "RedCloth"
gem "rdoc", "~>3.6"
gem "org-ruby", "= 0.9.9"
gem "creole", "~>0.3.6"
gem "wikicloth", "=0.8.1", :platforms => :ruby
gem "asciidoctor", "= 0.1.4"
gem "rake"
\ No newline at end of file
gem "rake"
Loading
Loading
@@ -21,7 +21,6 @@ you wish to run the library. You can also run `script/bootstrap` to fetch them a
* [.textile](http://www.textism.com/tools/textile/) -- `gem install RedCloth`
* [.rdoc](http://rdoc.sourceforge.net/) -- `gem install rdoc -v 3.6.1`
* [.org](http://orgmode.org/) -- `gem install org-ruby`
* [.creole](http://wikicreole.org/) -- `gem install creole`
* [.mediawiki, .wiki](http://www.mediawiki.org/wiki/Help:Formatting) -- `gem install wikicloth`
* [.rst](http://docutils.sourceforge.net/rst.html) -- `easy_install docutils`
* [.asciidoc, .adoc, .asc](http://asciidoc.org/) -- `gem install asciidoctor` (http://asciidoctor.org)
Loading
Loading
Loading
Loading
@@ -12,16 +12,12 @@ markup('github/markup/rdoc', /rdoc/) do |content|
end
 
markup('org-ruby', /org/) do |content|
Orgmode::Parser.new(content, {
:allow_include_files => false,
Orgmode::Parser.new(content, {
:allow_include_files => false,
:skip_syntax_highlight => true
}).to_html
end
 
markup(:creole, /creole/) do |content|
Creole.creolize(content)
end
markup(:wikicloth, /mediawiki|wiki/) do |content|
WikiCloth::WikiCloth.new(:data => content).to_html(:noedit => true)
end
Loading
Loading
= H1 =
== H2 ==
paragraph of text that will be turned into a paragraph element. It can
go over several lines with line breaks, it will be turned into a
contiguous paragraph element.
You can force a linebreak in your paragraph text\\thusly.
* a list element
** sub list element
* 2nd list element
{{{
pre formatted text
$ ls -la
total 56
drwxr-xr-x 6 nferrier users 4096 Jul 5 23:10 .
drwxr-x--- 120 nferrier users 12288 Jul 5 19:36 ..
drwxr-xr-x 2 nferrier users 4096 Jul 5 18:19 bin
-rw-r--r-- 1 nferrier users 6 Jul 5 18:19 .gitignore
drwxr-xr-x 4 nferrier users 4096 Jul 5 23:10 .hg
-rw-r--r-- 1 nferrier users 1182 Jul 5 18:19 HISTORY.md
-rw-r--r-- 1 nferrier users 562 Jul 5 18:19 .kick
drwxr-xr-x 3 nferrier users 4096 Jul 5 18:19 lib
-rw-r--r-- 1 nferrier users 1050 Jul 5 18:19 LICENSE
-rw-r--r-- 1 nferrier users 1312 Jul 5 18:19 Rakefile
-rw-r--r-- 1 nferrier users 3390 Jul 5 18:19 README.md
drwxr-xr-x 3 nferrier users 4096 Jul 5 18:19 test
}}}
<h1>H1</h1><h2>H2</h2><p>paragraph of text that will be turned into a paragraph element. It can go over several lines with line breaks, it will be turned into a contiguous paragraph element.</p><p>You can force a linebreak in your paragraph text<br>thusly.</p><ul>
<li>a list element<ul><li>sub list element</li></ul>
</li>
<li>2nd list element</li>
</ul><pre>pre formatted text
$ ls -la
total 56
drwxr-xr-x 6 nferrier users 4096 Jul 5 23:10 .
drwxr-x--- 120 nferrier users 12288 Jul 5 19:36 ..
drwxr-xr-x 2 nferrier users 4096 Jul 5 18:19 bin
-rw-r--r-- 1 nferrier users 6 Jul 5 18:19 .gitignore
drwxr-xr-x 4 nferrier users 4096 Jul 5 23:10 .hg
-rw-r--r-- 1 nferrier users 1182 Jul 5 18:19 HISTORY.md
-rw-r--r-- 1 nferrier users 562 Jul 5 18:19 .kick
drwxr-xr-x 3 nferrier users 4096 Jul 5 18:19 lib
-rw-r--r-- 1 nferrier users 1050 Jul 5 18:19 LICENSE
-rw-r--r-- 1 nferrier users 1312 Jul 5 18:19 Rakefile
-rw-r--r-- 1 nferrier users 3390 Jul 5 18:19 README.md
drwxr-xr-x 3 nferrier users 4096 Jul 5 18:19 test</pre>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment