3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【GitHub】コードブロック中で「```」をエスケープする

Posted at

遭遇した問題

GitHubのPRコメントのコードブロック内で「```」と打とうとした所、コードブロックが2つできてしまい、1つのコードブロックになってくれませんでした。

```kotlin
```
ヒアドキュメント
```
```

解決方法

下記のサンプルを参考に、外側を「````」と4つに増やせば正常に機能しました。

````kotlin
```
ヒアドキュメント
```
````

ただし、この書き方はQiitaでは機能しないようです。

参考にさせて頂いたissue

ところで

Kotlinのヒアドキュメントは"""で囲むのが正しかったです。

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?