Last active
April 26, 2016 07:23
-
-
Save geckotang/c83ceefdc494f8adf46a8df09972a179 to your computer and use it in GitHub Desktop.
This file contains 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
pre: code | |
| #{'<dl>'} | |
| #{' <dt>説明対象</dt>'} | |
| #{' <dd>説明文</dd>'} | |
| #{'</dl>'} | |
pre: code. | |
#{'<dl>'} | |
#{' <dt>説明対象</dt>'} | |
#{' <dd>説明文</dd>'} | |
#{'</dl>'} | |
- | |
escapedStr = ` | |
<dl> | |
<dt>Title</dt> | |
<dd>Description</dd> | |
</dl> | |
` | |
pre: code #{escapedStr} |
This file contains 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
<pre><code><dl> | |
<dt>説明対象</dt> | |
<dd>説明文</dd> | |
</dl></code></pre> | |
<pre><code><dl> | |
<dt>説明対象</dt> | |
<dd>説明文</dd> | |
</dl></code></pre> | |
<pre><code> | |
<dl> | |
<dt>説明対象</dt> | |
<dd>説明文</dd> | |
</dl> | |
</code></pre> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment