for reasons not important to this issue, i have my html template inside es6 .js files which export the templates as string
// template.js
export default `
<h1 translate>Heading</h1>
<p translate>Text in paragraph</p>
`;
notice the backtick which enables multiline html inside js files
when i run the extractor on these file (angular-gettext-cli@1.0.5, using angular-gettext-tools@1.2.0) the tags from these template files dont get extracted
is it me, or is this a bug?
for reasons not important to this issue, i have my html template inside es6 .js files which export the templates as string
notice the backtick which enables multiline html inside js files
when i run the extractor on these file (angular-gettext-cli@1.0.5, using angular-gettext-tools@1.2.0) the tags from these template files dont get extracted
is it me, or is this a bug?