Typos
This commit is contained in:
parent
6ba20ec012
commit
90c9d51c7d
1 changed files with 2 additions and 2 deletions
|
@ -41,7 +41,7 @@ export default class Markdown {
|
||||||
}
|
}
|
||||||
|
|
||||||
_copyTokens() {
|
_copyTokens() {
|
||||||
// copy tokens (the parser modifies it's input arg)
|
// copy tokens (the parser modifies its input arg)
|
||||||
const tokens_copy = this.tokens.slice();
|
const tokens_copy = this.tokens.slice();
|
||||||
// it also has a 'links' property, because this is javascript
|
// it also has a 'links' property, because this is javascript
|
||||||
// and why wouldn't you have an array that also has properties?
|
// and why wouldn't you have an array that also has properties?
|
||||||
|
@ -94,7 +94,7 @@ export default class Markdown {
|
||||||
const real_renderer = new marked.Renderer();
|
const real_renderer = new marked.Renderer();
|
||||||
real_renderer.link = function(href, title, text) {
|
real_renderer.link = function(href, title, text) {
|
||||||
// prevent marked from turning plain URLs
|
// prevent marked from turning plain URLs
|
||||||
// into links, because tits algorithm is fairly
|
// into links, because its algorithm is fairly
|
||||||
// poor. Let's send plain URLs rather than
|
// poor. Let's send plain URLs rather than
|
||||||
// badly linkified ones (the linkifier Vector
|
// badly linkified ones (the linkifier Vector
|
||||||
// uses on message display is way better, eg.
|
// uses on message display is way better, eg.
|
||||||
|
|
Loading…
Reference in a new issue