mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2025-01-31 11:16:42 +01:00
Let's appease the gods that be
This commit is contained in:
parent
6ab08054ea
commit
9e065596d1
1 changed files with 9 additions and 3 deletions
|
@ -56,13 +56,19 @@ module.config [
|
||||||
|
|
||||||
markedProvider.setOptions
|
markedProvider.setOptions
|
||||||
gfm: true
|
gfm: true
|
||||||
tables: true
|
tables: false
|
||||||
sanitize: true
|
sanitize: true
|
||||||
smartLists: true
|
smartLists: true
|
||||||
smartypants: true
|
smartypants: true
|
||||||
|
|
||||||
markedProvider.setRenderer link: (href, title, text) ->
|
|
||||||
'<a href="' + href + '"' + (if title then ' title="' + title + '"' else '') + ' target="_blank">' + text + '</a>'
|
markedProvider.setRenderer
|
||||||
|
link: (href, title, text) ->
|
||||||
|
'<a href="' + href + '" target="_blank">' + href + '</a>'
|
||||||
|
heading: (text, level) ->
|
||||||
|
text
|
||||||
|
image: (url) ->
|
||||||
|
url
|
||||||
|
|
||||||
# Errors
|
# Errors
|
||||||
state.state 'errors-404',
|
state.state 'errors-404',
|
||||||
|
|
Loading…
Reference in a new issue