wmaurer / vscode-html2jade

Visual Studio Extensions for converting HTML to Jade, and Jade to HTML
4 stars 2 forks source link

HTML including multi-byte characters will be converted as character reference. #2

Open ginlime opened 8 years ago

ginlime commented 8 years ago

HTML including multi-byte characters will be converted as character reference.

Like this:

<h1>こんにちは!</h1>

*means "Hello!" in Japanese.

will be converted as like this.

h1 &#x3053;&#x3093;&#x306B;&#x3061;&#x306F;

It must spoils readability of codes.


But, converting from jade to HTML, it won't be occured.

h1 こんにちは!

This will be converted as:

<h1>こんにちは!</h1>