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
Input:
<template class="row"> <div> <template> </template> </div> <div></div> </template>
Observed output: (in >= 1.6.0)
Expected output: (like in 1.5.10)
Removing the 'template' entry in beautify-html.js unformatted array, works around the issue
'template'
unformatted
The text was updated successfully, but these errors were encountered:
I believe my issue is related to this one. I'm using "wrap_attributes": "force-aligned" and it works great everywhere except inside a template tag.
input:
<div id="1" class="2" test="3"></div> <template> <div id="1" class="2" test="3"></div> </template>
output:
Sorry, something went wrong.
The issue is related to #841. Unformatted and inline are not distinguished in the html beautifier and they need to be.
Fixed in 1.8.0-rc2
No branches or pull requests
Input:
Observed output: (in >= 1.6.0)
Expected output: (like in 1.5.10)
Removing the
'template'
entry in beautify-html.jsunformatted
array, works around the issueThe text was updated successfully, but these errors were encountered: