fix(aio): handle html docregions that do not end on the same line
This commit is contained in:
parent
6a9251874b
commit
649bab8ff8
|
@ -1,7 +1,7 @@
|
|||
// These kind of comments are used in HTML
|
||||
module.exports = {
|
||||
regionStartMatcher: /^\s*<!--\s*#docregion\s*(.*)\s*-->\s*$/,
|
||||
regionEndMatcher: /^\s*<!--\s*#enddocregion\s*(.*)\s*-->\s*$/,
|
||||
plasterMatcher: /^\s*<!--\s*#docplaster\s*(.*)\s*-->\s*$/,
|
||||
regionStartMatcher: /^\s*<!--\s*#docregion\s*(.*?)\s*(?:-->)?\s*$/,
|
||||
regionEndMatcher: /^\s*<!--\s*#enddocregion\s*(.*?)\s*-->\s*$/,
|
||||
plasterMatcher: /^\s*<!--\s*#docplaster\s*(.*?)\s*-->\s*$/,
|
||||
createPlasterComment: plaster => `<!-- ${plaster} -->`
|
||||
};
|
||||
|
|
|
@ -33,6 +33,14 @@ describe('html region-matcher', () => {
|
|||
expect(matches[1]).toEqual('');
|
||||
});
|
||||
|
||||
it('should handle annotations that do not close the comment on the same line', () => {
|
||||
let matches;
|
||||
|
||||
matches = matcher.regionStartMatcher.exec('<!-- #docregion A b c');
|
||||
expect(matches).not.toBeNull();
|
||||
expect(matches[1]).toEqual('A b c');
|
||||
});
|
||||
|
||||
it('should match plaster annotations', () => {
|
||||
let matches;
|
||||
|
||||
|
|
Loading…
Reference in New Issue