We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why are comments stripped out of the component?
<p>Hello {{subject}} <!-- keep me here --></p> <script> component.exports = { data: { subject: 'World' }, stripComments: false }; </script>
output:
<p>Hello World</p>
The text was updated successfully, but these errors were encountered:
I think we might have an open issue for this somewhere. The problem is that the code in rcu has some parsing options hardcoded.
Sorry, something went wrong.
I think this is the relevant bit of code. A PR to make those user-configurable would be definitely welcomed.
No branches or pull requests
Why are comments stripped out of the component?
output:
The text was updated successfully, but these errors were encountered: