Skip to content

Commit

Permalink
fix(micromark/html): remove <p> for contents
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahacad committed Jul 13, 2021
1 parent 269b7ae commit 61837e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions micromark-extension-details/html.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export function detailsHtml(options = {}) {
this.buffer();
},
detailsContainerContent() {
this.tag('<p>');
// this.tag('<p>');
},
},
exit: {
Expand All @@ -28,7 +28,7 @@ export function detailsHtml(options = {}) {
this.tag('>');
},
detailsContainerContent() {
this.tag('</p>');
// this.tag('</p>');
},
},
};
Expand Down

0 comments on commit 61837e5

Please sign in to comment.