undo removal of stripping <p>s as it breaks HTML /me
s
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
19e5dc5799
commit
f5856270cc
3 changed files with 32 additions and 6 deletions
|
@ -111,7 +111,7 @@ export default class Markdown {
|
|||
// you can nest them.
|
||||
//
|
||||
// Let's try sending with <p/>s anyway for now, though.
|
||||
/*
|
||||
|
||||
const real_paragraph = renderer.paragraph;
|
||||
|
||||
renderer.paragraph = function(node, entering) {
|
||||
|
@ -124,10 +124,10 @@ export default class Markdown {
|
|||
real_paragraph.call(this, node, entering);
|
||||
}
|
||||
};
|
||||
*/
|
||||
|
||||
|
||||
renderer.html_inline = html_if_tag_allowed;
|
||||
|
||||
|
||||
renderer.html_block = function(node) {
|
||||
/*
|
||||
// as with `paragraph`, we only insert line breaks
|
||||
|
@ -138,7 +138,7 @@ export default class Markdown {
|
|||
html_if_tag_allowed.call(this, node);
|
||||
/*
|
||||
if (isMultiLine) this.cr();
|
||||
*/
|
||||
*/
|
||||
};
|
||||
|
||||
return renderer.render(this.parsed);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue