minad-creole 0.3.2 → 0.3.3
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/lib/creole.rb +3 -2
- metadata +1 -1
data/lib/creole.rb
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
1
2
|
require 'cgi'
|
|
2
3
|
require 'uri'
|
|
3
4
|
|
|
@@ -29,7 +30,7 @@ require 'uri'
|
|
|
29
30
|
|
|
30
31
|
module Creole
|
|
31
32
|
|
|
32
|
-
VERSION = '0.3.
|
|
33
|
+
VERSION = '0.3.3'
|
|
33
34
|
|
|
34
35
|
# CreoleParseError is raised when the Creole parser encounters
|
|
35
36
|
# something unexpected. This is generally now thrown unless there is
|
|
@@ -80,7 +81,7 @@ module Creole
|
|
|
80
81
|
@p = false
|
|
81
82
|
@stack = []
|
|
82
83
|
parse_block(string)
|
|
83
|
-
|
|
84
|
+
@out
|
|
84
85
|
end
|
|
85
86
|
|
|
86
87
|
# Escape any characters with special meaning in HTML using HTML
|