Estevao Soares dos Santos
5b8f1d312f
feat(emoji): add emoji support
...
Add unicode emoji support to showdown. To enable this feature,
use `emoji: true` option. A list of supported emojis is
available here: https://github.com/showdownjs/showdown/wiki/Emojis
Closes #448
2017-10-24 13:44:49 +01:00
Estevão Soares dos Santos
6e485382d3
Update README.md
2017-10-01 23:39:35 +01:00
Estevao Soares dos Santos
d8204e9bcd
docs(README.md): small fix in README.md
2017-08-23 22:35:19 +01:00
Estevao Soares dos Santos
ff26c08904
feat(rawPrefixHeaderId): add option to prevent showdown from modifying the prefix
...
Setting this option to true will prevent showdown from modifying the
prefix. This might result in malformed IDs (if, for instance, the " char is
used in the prefix). Has no effect if prefixHeaderId is set to false.
Closes #409
2017-08-06 18:19:46 +01:00
Estevao Soares dos Santos
c266f62dde
chore(readme.md): format and add references to readme.md
2017-08-06 17:51:29 +01:00
Estevao Soares dos Santos
0bc7bd1bd8
Merge branch 'develop'
2017-08-05 01:39:24 +01:00
Estevão Soares dos Santos
2f6b49aece
Update README.md
2017-06-28 17:35:52 +01:00
Estevão Soares dos Santos
22203769a8
Update README.md
2017-06-28 17:35:06 +01:00
Estevão Soares dos Santos
b94acfadb6
chore: fix REAMDE.md
...
Closes #407
2017-06-28 17:34:47 +01:00
Estevao Soares dos Santos
5a5aff6721
feat(backslashEscapesHTMLTags): backslash escapes HTML tags
...
Add support for HTML tag escaping with backslash
Closes #374
2017-06-02 04:48:53 +01:00
Marinin Tim
94c570a9d8
feat(customizeHeaderId): add option for customizing header ids
...
It’s useful for non-Latin texts, where header might be, for example, in Russian, but user wants id to be in English. This feature allows user to set id for header manually, using curly braces:
## Привет, мир {hello-world}
Closes #383
2017-06-01 02:35:42 +01:00
Estevao Soares dos Santos
f3dff7b0cf
Merge branch 'master' into develop
2017-04-23 01:59:53 +01:00
Miguel Laginha
5bec8f9e9a
feat(literalMidWordAsterisks): add option for mid word asterisks
...
Implements feature similar to ignoring midword underscores but with asterisks. The main use case is ignoring cursing.
2017-04-05 16:25:20 +01:00
Estevao Soares dos Santos
50235d6951
feat(openLinksInNewWindow): add option to open all links in a new window
...
Closes #362 , #337 , #249 , #247 , #222
2017-03-31 00:25:40 +01:00
Estevao Soares dos Santos
d49f7320f2
chore: change donation method to paypal
2017-03-05 05:34:06 +00:00
Estevao Soares dos Santos
41b93915af
chore: update README.md to include appveyor badge
2017-03-05 05:21:42 +00:00
Estevao Soares dos Santos
6374b5b376
feat(flavor: ghost): add Ghost flavor
2017-02-06 07:22:01 +00:00
Estevão Soares dos Santos
4a7425758f
docs: add donate button to readme
2017-02-05 00:00:04 +00:00
greenkeeper[bot]
b5e46fdb8d
Update dependencies to enable Greenkeeper 🌴 ( #335 )
...
adapt code to updated dependencies
2017-01-31 05:46:25 +00:00
Estevao Soares dos Santos
a4c24c9805
feat(ghMentionsLink): add ability to define the generated url in @mentions
...
This option enables users to define the generated links in @mentions.
For instance, with ghMentionsOption set to `//mysite.com/{u}/profile`
this text
`@tivie`
will result in this link
`<a href="//mysite.com/tivie/profile">@tivie</a>`
2017-01-28 04:28:50 +00:00
Estevao Soares dos Santos
90c52b83e7
feat(encodeEmail): add option to enable/disable mail obfuscation
...
Prior to version 1.6.1, emails would always be obfuscated through dec and hex encoding.
This option makes it possible to disable this.
2017-01-27 19:03:37 +00:00
Estevao Soares dos Santos
0eaf1050c7
feat(getFlavor): add getFlavor method to showdown and Converter
...
With this new method, you can check what type of base flavor showdown is currently set
to run as.
2017-01-08 19:09:12 +00:00
Estevao Soares dos Santos
f2671c0cc7
feat(ghMentions): add support for github's @mentions
...
Closes #51
2017-01-06 04:33:12 +00:00
Estevao Soares dos Santos
d499feb2aa
fix(ghCompatibleHeaderId): improve the number of removed chars
2016-12-30 19:46:46 +00:00
Estevao Soares dos Santos
150a5cd3ff
chore: minor documentation fix
2016-12-30 19:26:00 +00:00
Estevao Soares dos Santos
3102615ec2
fix(ghCompatibleHeaderId): add % as an escaped char
2016-12-30 19:21:03 +00:00
Estevao Soares dos Santos
db97a90d5b
feat(ghCompatibleHeaderId): generate header ids compatible with github
...
style
Github replaces spaces with dashes and removes a bunch of characters
from generated header ids ][&~$!@#*()=:/,;?+'.\
This feature implements this.
Closes # 320, closes #321
2016-12-30 19:01:44 +00:00
Estevao Soares dos Santos
5d19877590
feat(requireSpaceBeforeHeadingText): option to make space between #
and header text mandatory
...
Credit: @nikz [Nik Wakelin](https://github.com/nikz )
Closes #277
2016-12-17 06:01:15 +00:00
Estevao Soares dos Santos
d2fc2a0c5c
feature(excludeTrailingPunctuationFromURLs): excludes trailing punctuation from auto linked URLs
...
Closes #266 , #308
2016-12-01 15:25:46 +00:00
Estevao Soares dos Santos
0942b5e87d
feature(simpleLineBreaks): parse linebreaks as <br />
...
This option enables linebreaks to always be treated as `<br />` tags
without needing to add spaces in front of the line, the same way GitHub does.
Closes #206
2016-11-30 18:04:17 +00:00
Estevão Soares dos Santos
e00d270383
chore: update REAMDE.md to include reference to flavors
2016-11-29 03:19:35 +00:00
Estevao Soares dos Santos
5d57d71ef7
Update README.md
2016-11-25 19:51:36 +00:00
Estevão Soares dos Santos
3cd6f22573
Update README.md
2016-11-25 19:15:31 +00:00
Estevao Soares dos Santos
0be39bccae
feat(disableForced4SpacesIndentedSublists): option that disables the requirement of indenting nested sublists by 4 spaces
2016-11-11 08:15:24 +00:00
Estevão Soares dos Santos
cc673f1d69
doc(README.md): add reference to NuGet package
...
Closes #253
2016-10-13 22:51:44 +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
Estevão Soares dos Santos
452c4285f4
Update README.md
2016-03-20 16:48:42 +00:00
Jayson Harshbarger
70a6caaf4f
docs(readme): Added link to SystemJS/JSPM plugin
2016-03-20 13:32:57 +09:00
Estevão Soares dos Santos
b81c416a31
docs(README.md): add libraries that use showdown
2015-08-23 03:31:55 +01:00
Estevão Soares dos Santos
bf4798a728
docs(README.md): fix typo
2015-07-21 21:01:47 +01:00
Estevão Soares dos Santos
a3b5946ec9
docs(README.md): change table example
2015-07-21 13:42:15 +01:00
Estevão Soares dos Santos
1ebb08484d
docs(README.md): add examples to image dimensions
2015-07-16 20:55:55 +01:00
Estevão Soares dos Santos
107bdb7b2f
Update README.md
2015-07-15 11:15:39 +01:00
Dipesh
e5f886b670
Updated readme.md
...
in Example of Setting options -> Locally, While creating showdown.Converter object closing '}' is missing
2015-07-15 11:45:54 +05:30
Estevão Soares dos Santos
b88bdbedc8
docs(README.md): add reference to option smoothLivePreview
2015-07-14 21:47:02 +01:00
Estevão Soares dos Santos
47f3bbd2c6
docs(README.md): add live demo
2015-07-14 03:34:37 +01:00
Estevão Soares dos Santos
c013e7577c
docs(README.md): update docs to match new version
2015-07-13 21:35:18 +01:00
Estevão Soares dos Santos
5aae53f773
Merge pull request #166 from schmijos/patch-2
...
docs(README.md): add typescript info
2015-07-10 14:13:42 +01:00
Estevão Soares dos Santos
0367a56711
Merge pull request #165 from schmijos/patch-1
...
docs(README.md): necessary to install all the dev dependencies recursively
2015-07-10 14:13:04 +01:00
Sergio Crisostomo
b921a063ae
fix typo
...
fix typo `conveter` to `converter`
2015-07-09 12:03:38 +02:00