You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mercury-parser/src/cleaners/fixtures/html.js

16 lines
348 B
JavaScript

const HTML = {
docWithH1: '<div><h1>This Is the Real Title</h1></div>',
docWith2H1s: `
<div>
<h1>This Is the Real Title</h1>
<h1>This Is the Real Title</h1>
</div>
`,
docWithTagsInH1: {
before: '<div><h1>This Is the <em>Real</em> Title</h1></div>',
after: 'This Is the Real Title',
},
};
export default HTML;