html2pug icon indicating copy to clipboard operation
html2pug copied to clipboard

Convert html to pug online

Results 3 html2pug issues
Sort by recently updated
recently updated
newest added

Wrong conversion when class has underscore Example: ``` ``` converted to ``` div(class="block__element") ``` Expected conversion to: ``` .block__element ```

`````` converts to: ```q-dialog(v-model="'PromptName'")``` which is not liked: ```VueCompilerError: v-model value must be a valid JavaScript member expression.``` To my mind it's valid javascript and node doesn't mind but it...

When convert empty value attribute the converted pug text will miss quote ![image](https://user-images.githubusercontent.com/7247064/190572724-bad407ef-f0d3-49be-a05e-6c6d6e57694c.png) should be ![image](https://user-images.githubusercontent.com/7247064/190572996-14847bec-0831-48bc-8eb8-b98ce8c6b3b0.png) Thanks