RedCloth 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of RedCloth might be problematic. Click here for more details.
- data/bin/redcloth +3 -0
- data/lib/redcloth.rb +1018 -0
- data/run-tests.rb +23 -0
- data/tests/code.yml +105 -0
- data/tests/images.yml +171 -0
- data/tests/instiki.yml +37 -0
- data/tests/links.yml +155 -0
- data/tests/lists.yml +79 -0
- data/tests/markdown.yml +214 -0
- data/tests/poignant.yml +64 -0
- data/tests/textism.yml +397 -0
- metadata +58 -0
metadata
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.8.1
|
3
|
+
specification_version: 1
|
4
|
+
name: RedCloth
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 3.0.0
|
7
|
+
date: 2004-11-09
|
8
|
+
summary: RedCloth is a module for using Textile and Markdown in Ruby. Textile and Markdown are text formats. A very simple text format. Another stab at making readable text that can be converted to HTML.
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
author: Why the Lucky Stiff
|
12
|
+
email: why@ruby-lang.org
|
13
|
+
homepage: http://www.whytheluckystiff.net/ruby/redcloth/
|
14
|
+
rubyforge_project: redcloth
|
15
|
+
description: "No need to use verbose HTML to build your docs, your blogs, your pages. Textile
|
16
|
+
gives you readable text while you're writing and beautiful text for your
|
17
|
+
readers. And if you need to break out into HTML, Textile will allow you to do
|
18
|
+
so. Textile also handles some subtleties of formatting which will enhance your
|
19
|
+
document's readability: * Single- and double-quotes around words or phrases are
|
20
|
+
converted to curly quotations, much easier on the eye. \"Observe!\" * Double
|
21
|
+
hyphens are replaced with an em-dash. Observe -- very nice! * Single hyphens
|
22
|
+
are replaced with en-dashes. Observe - so cute! * Triplets of periods become an
|
23
|
+
ellipsis. Observe... * The letter 'x' becomes a dimension sign when used
|
24
|
+
alone. Observe: 2 x 2. * Conversion of ==(TM)== to (TM), ==(R)== to (R),
|
25
|
+
==(C)== to (C). For more on Textile's language, hop over to \"A Textile
|
26
|
+
Reference\":http://hobix.com/textile/. For more on Markdown, see \"Daring
|
27
|
+
Fireball's page\":http://daringfireball.net/projects/markdown/."
|
28
|
+
autorequire: redcloth
|
29
|
+
default_executable:
|
30
|
+
bindir: bin
|
31
|
+
has_rdoc: false
|
32
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
33
|
+
requirements:
|
34
|
+
-
|
35
|
+
- ">"
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: 0.0.0
|
38
|
+
version:
|
39
|
+
platform: ruby
|
40
|
+
files:
|
41
|
+
- bin/redcloth
|
42
|
+
- tests/textism.yml
|
43
|
+
- tests/code.yml
|
44
|
+
- tests/images.yml
|
45
|
+
- tests/links.yml
|
46
|
+
- tests/instiki.yml
|
47
|
+
- tests/poignant.yml
|
48
|
+
- tests/lists.yml
|
49
|
+
- tests/markdown.yml
|
50
|
+
- lib/redcloth.rb
|
51
|
+
- run-tests.rb
|
52
|
+
test_files: []
|
53
|
+
rdoc_options: []
|
54
|
+
extra_rdoc_files: []
|
55
|
+
executables: []
|
56
|
+
extensions: []
|
57
|
+
requirements: []
|
58
|
+
dependencies: []
|