github-markdown 0.2.1 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- data/ext/markdown/gh-markdown.c +3 -1
- data/github-markdown.gemspec +1 -1
- metadata +4 -4
data/ext/markdown/gh-markdown.c
CHANGED
@@ -138,13 +138,15 @@ static const int GITHUB_MD_NESTING = 16;
|
|
138
138
|
* - TABLES: the tables extension from PHP-Markdown extra
|
139
139
|
* - FENCED_CODE: the fenced code blocks extension from
|
140
140
|
* PHP-Markdown extra, but working with ``` besides ~~~.
|
141
|
+
* - AUTOLINK: Well. That. Link stuff automatically.
|
141
142
|
*/
|
142
143
|
static const int GITHUB_MD_FLAGS =
|
143
144
|
MKDEXT_NO_INTRA_EMPHASIS |
|
144
145
|
MKDEXT_LAX_SPACING |
|
145
146
|
MKDEXT_STRIKETHROUGH |
|
146
147
|
MKDEXT_TABLES |
|
147
|
-
MKDEXT_FENCED_CODE
|
148
|
+
MKDEXT_FENCED_CODE |
|
149
|
+
MKDEXT_AUTOLINK;
|
148
150
|
|
149
151
|
/* Init the default pipeline */
|
150
152
|
static void rb_ghmd__init_md(void)
|
data/github-markdown.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
Gem::Specification.new do |s|
|
3
3
|
s.name = 'github-markdown'
|
4
|
-
s.version = '0.
|
4
|
+
s.version = '0.3.0'
|
5
5
|
s.summary = 'The Markdown parser for GitHub.com'
|
6
6
|
s.description = 'Self-contained Markdown parser for GitHub, with all our custom extensions'
|
7
7
|
s.date = '2012-04-04'
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: github-markdown
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 19
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
-
|
10
|
-
version: 0.
|
8
|
+
- 3
|
9
|
+
- 0
|
10
|
+
version: 0.3.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- GitHub, Inc
|