dimensi / xhtml2pug

11 stars 2 forks source link

Multi-line HTML comments become un-parseable #16

Open geoidesic opened 2 years ago

geoidesic commented 2 years ago

Using the vuejs xhtml2pug plugin: This:


          <!-- <q-item-label class="caption text-secondary t12">{{
            item.caption
          }}</q-item-label> -->

... gets converted to this

 //
  <q-item-label class="caption text-secondary t12">{{
  item.caption
  }}</q-item-label>
dimensi commented 2 years ago

I'm not vuejs user. Give me expected result, plz

geoidesic commented 2 years ago

Expected result should probably be:

//  <q-item-label class="caption text-secondary t12">{{
//  item.caption
//  }}</q-item-label>