mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
7 lines
324 B
JavaScript
7 lines
324 B
JavaScript
// These type of comments are used in hash comment based languages such as bash and Yaml
|
|
module.exports = {
|
|
regionStartMatcher: /^\s*#\s*#docregion\s*(.*)\s*$/,
|
|
regionEndMatcher: /^\s*#\s*#enddocregion\s*(.*)\s*$/,
|
|
plasterMatcher: /^\s*#\s*#docplaster\s*(.*)\s*$/,
|
|
createPlasterComment: plaster => `# ${plaster}`
|
|
};
|