【WordPress】MarkdownでSyntaxHighlighter Evolvedを使うとき、「<」などと変換されてしまう < h1>
TOC
まさにドンピシャでした!ありがとうございます!!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
`js
// .....
var hoge = () => {
};
// ......
`
このようになっているコード。
の、の部分が見事にになってしまうんです。
そんなときは、次のように書きましょう。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div>
[javascript] (好きな言語に)
// ...
var hoge = () => {
};
// ...
[/javascript]
</div>
ポイントは、‘‘‘と書いていたところを、divタグとショートコードで書くところです。
これで解決!budougumiさんありがとうございます。
TOC
まさにドンピシャでした!ありがとうございます!!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| `js | |
| // ..... | |
| var hoge = () => { | |
| }; | |
| // ...... | |
| ` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div> | |
| [javascript] (好きな言語に) | |
| // ... | |
| var hoge = () => { | |
| }; | |
| // ... | |
| [/javascript] | |
| </div> |
ポイントは、‘‘‘と書いていたところを、divタグとショートコードで書くところです。
これで解決!budougumiさんありがとうございます。