Estevao Soares dos Santos
799abea767
fix(parser): fix issue with comments inside nested code blocks
...
Code blocks containing comments are now converted correctly when nested in list items.
Closes #288
2016-08-30 06:07:57 +01:00
Estevao Soares dos Santos
0cc55b07ee
fix(simplifiedAutoLink): fix simplified autolink to match GFM behavior
...
Using the simplifiedAutoLink option does not return the expected GFM behaviour when parsing links without a http prefix.
Previously, `www.google.com` would be parsed into `<a href="www.google.com">www.google.com</a>`.
With this fix, showdown behaves like GFM, and the result is `<a href="http://www.google.com ">www.google.com</a>`
Closes #284 , closes #285
2016-08-19 19:12:25 +01:00
Estevao Soares dos Santos
8591ec8196
Merge branch 'develop' into feature/source_indentation_auto_removal
2016-06-21 01:42:50 +01:00
Estevão Soares dos Santos
73206b07fb
fix(image-parser): fix ref style imgs after inline style imgs not parsing correctly
...
When reference style and inline style are mixed together, in the same line, it produces weird parsing bugs. This commit fixes this
Closes #261
2016-06-08 17:16:49 +01:00
Estevão Soares dos Santos
261f127f7e
feat(smart-indent-fix): fix for es6 identation problems
...
Closes #259
2016-06-07 01:23:52 +01:00
Stewart McKee
6e30a48890
added check for undefined on text due to failing to parse tables
2016-05-24 10:26:59 +01:00
Estevão Soares dos Santos
ddaacfc41a
fix(tables): fix table heading separators requiring 3 dashes instead of 2
...
Closes #256
2016-05-17 21:27:40 +01:00
Estevão Soares dos Santos
6e5073d977
chore: remove html beautify from tests
2016-02-02 00:29:06 +00:00
Estevão Soares dos Santos
6412eadf29
fix weird travis issue try 1
2016-02-01 03:56:22 +00:00
Estevão Soares dos Santos
f58f014bc3
fix(tables): fix tables to match github's md spec
...
Now Leading and trailing pipes (|) are optional in tables
Closes #230
2016-01-25 05:24:54 +00:00
Estevão Soares dos Santos
71a5873902
fix(HTMLParser): fix code tags parsing
...
Closes #231
2016-01-25 03:01:54 +00:00
Estevão Soares dos Santos
7d0436d210
fix(HTMLParser): fix ghCodeBlocks being parsed inside code tags
...
When using html pre/code tags to wrap github's fenced code block syntax,
showdown would parsed them instead of treating them like plain code.
Closes #229
2016-01-25 01:04:06 +00:00
Estevão Soares dos Santos
c97f1dc6b1
feat(markdown="1"): enable parsing markdown inside HTML blocks
...
Enable parsing markdown inside HTML blocks if those blocks have an attribute called markdown="1".
This feature is EXPERIMENTAL! As such, the behavior might change on future releases.
Closes #178
2016-01-02 01:08:17 +00:00
Estevão Soares dos Santos
2746949d7d
fix(hashHTMLBlock): fix issue with html breaking markdown parsing
...
Closes #220
2016-01-01 23:33:33 +00:00
Estevão Soares dos Santos
5669317fe4
fix(strikethrough): Fix strikethrough issue with escaped chars
...
Closes #214
2015-10-30 01:00:30 +00:00
Estevão Soares dos Santos
f4cb29e05a
Merge branch 'develop' into feature/event_mediator
...
Conflicts:
dist/showdown.js
dist/showdown.js.map
dist/showdown.min.js
dist/showdown.min.js.map
src/converter.js
src/subParsers/blockGamut.js
src/subParsers/codeSpans.js
2015-10-19 03:20:20 +01:00
Estevão Soares dos Santos
e86aea8183
fix(literalMidWordUnderscores): fix different behavior with asterisks
...
Closes #198
2015-10-19 03:09:50 +01:00
Estevão Soares dos Santos
5b1f716151
chore: normalize test names
2015-10-19 02:50:32 +01:00
Estevão Soares dos Santos
a0da0a60b2
chore: small test fix for #196
2015-10-19 02:35:08 +01:00
Estevão Soares dos Santos
3097bd45c2
feat(hashHTMLSpans): Add support for hashing span elements
...
This feature enables hashing span elements that should not be touched by
showdown. For instance, `<code>` tags in markdown source should not be
parsed by showdown, so the text inside them remains unchanged.
This is made possible by a new exciting internal feature,
matchRecursiveRegExp.
Closes #196 , Closes #175 , Partially reverts 5f043ca
2015-10-19 01:55:35 +01:00
Estevão Soares dos Santos
7aeed3c8ae
Merge pull request #197 from twitwi/test-for-issue-196
...
chore: add test for issue #196
2015-10-18 20:46:14 +01:00
Estevão Soares dos Santos
8ebb25e486
fix(simpleautolink): fix mail simpleAutoLink to ignore urls with @ symbol
...
Urls with @ symbol will not be incorrectly converted to mail addressed
Closes #204
2015-10-07 04:46:28 +01:00
Rémi Emonet
ab902eacdf
fixing test as, in code blocks, markdown should automatically escape
...
still the issue is there
2015-09-01 01:24:11 +02:00
Rémi Emonet
2b17dc9944
adding test for issue #196
2015-09-01 00:18:32 +02:00
Estevão Soares dos Santos
50256233eb
fix(tables): fix md tables being parsed inside indented code blocks.
...
Closes #193
2015-08-27 03:41:59 +01:00
Estevão Soares dos Santos
ed2cf595b0
fix(blockQuote): fix 'github style codeblocks' not being parsed inside 'blockquote'
...
Closes #192
2015-08-25 21:10:49 +01:00
Estevão Soares dos Santos
3df706248f
fix(blockGamut): fix for headings inside blockquotes
...
The spec states that you can be lazy and only put the `>` before the first line of a hard-wrapped paragraph.
It also states that blocquotes can contain any other md element inside.
This means headings and horizontal rules should be included in the blockquote but, right now, are treated as
independent entities
Closes #191
2015-08-23 03:11:11 +01:00
Estevão Soares dos Santos
cb0509b4a2
fix test
2015-08-03 03:49:03 +01:00
Estevão Soares dos Santos
2734326e19
feat(eventDispatcher): add an event dispatcher to converter
2015-08-03 03:47:49 +01:00
Estevão Soares dos Santos
7720c88bfc
fix(lists): fix github code blocks not being parsed inside lists
...
Fix ghCodeBlocks not being correctly parsed inside lists. Also, as a side
effect, fixes issues with consecutive lists and extra paragraphs being
added into lists.
Closes #142 , Closes #183 , Closes #184
2015-08-01 21:05:28 +01:00
Estevão Soares dos Santos
eeccee7038
Merge branch 'develop'
2015-07-22 18:29:00 +01:00
Estevão Soares dos Santos
789dc1806a
feat(subParser/tables.js): add support for md span elements in table headers
...
+ tests
Closes #179
2015-07-22 18:21:20 +01:00
Estevão Soares dos Santos
bf8b3649ad
test(ghost): ignore footnotes test
...
Ignore footnotes tests since we don't have this feature in showdown
2015-07-14 21:10:00 +01:00
Estevão Soares dos Santos
534c53616a
test: add ghost issues tests
2015-07-14 20:53:28 +01:00
Estevão Soares dos Santos
5d0ec964e4
test: add test for autolink literalMidWordUnderscores options used together
2015-07-14 20:52:56 +01:00
Hannah Wolfe
220b85d722
Merge ErinDS broken stuff tests
2015-07-14 18:53:17 +01:00
Estevão Soares dos Santos
7ee2017c56
fix(subParsers/italicsAndBold.js): fix broken em/strong tags when used with literalMidWordUnderscores
...
When literalMidWordUnderscoresis set to true, em and strong tags that start or end a paragraph don't get parsed as such.
This fixes this issue.
Closes #174
2015-07-14 16:51:26 +01:00
Estevão Soares dos Santos
b7f5e32e1a
feat(subParsers/githubCodeBlock): add extra language class to conform to html5 spec
2015-07-14 00:41:59 +01:00
Estevão Soares dos Santos
cf2d1151e9
rollback(tests): cannot make cli tests run on travis
...
Cli tests are passing on localhost, but fail on travis due to reasons unknown.
Disabling them for now until we figure it out.
2015-07-13 05:46:06 +01:00
Estevão Soares dos Santos
d8111d1791
test(cli): run cli tests only on node >= 0.12
2015-07-13 05:39:05 +01:00
Estevão Soares dos Santos
1a764b0280
test(cli): fix tests for running in .travis
2015-07-13 05:21:23 +01:00
Estevão Soares dos Santos
d079154260
Merge branch 'feature/cli' into develop
...
Conflicts:
.gitignore
src/subParsers/headers.js
2015-07-13 05:16:09 +01:00
Estevão Soares dos Santos
f6a33e402c
feat(CLI): add a simple cli tool
2015-07-13 05:09:03 +01:00
Estevão Soares dos Santos
be72b4879f
fix(headerLevelStart): fix for NaN error when specifying a non number as headerLevelStart param
2015-07-13 01:35:36 +01:00
Estevão Soares dos Santos
7e55bceb0e
feat(flavours): add markdown presets/flavors
...
This feature enables users to select a preset/flavor.
A flavor is just a preset of options, a shortcut so users don't have to set each option one by one.
Closes #164
2015-07-12 02:15:35 +01:00
Estevão Soares dos Santos
20ca099f56
chore: add class to tasklist items
2015-07-11 23:09:47 +01:00
Estevão Soares dos Santos
dc72403acc
feat(tasklists): add support for GFM tasklists
...
Github Flavored Markdown supports tasklist by `[x]` or `[ ]` after list item marker.
This commit adds this feature to showdown through an option called "tasklists".
Related to #164
2015-07-11 23:02:02 +01:00
Estevão Soares dos Santos
c33f98884b
feat(ghCodeBlocks): add option to disable GH codeblocks
...
GFM support fenced codeblocks. Showdown, since very early, adopted this too.
It is now possible to disable GFM codeblocks with the option "ghCodeBlocks" set to false.
It is enabled by default
2015-07-11 20:33:11 +01:00
Estevão Soares dos Santos
5ec75c459b
fix(subparsers/tables.js): fix parser order so that tables include all spanGamut elements
2015-07-11 19:50:26 +01:00
Estevão Soares dos Santos
09a6578604
chore(grunt): make Grunt use a temporary build to avoid pollution of dist directory
2015-07-11 19:32:22 +01:00