web-dev-qa-db-ja.com

GitHub Gistでスタイル付きのマークダウン警告ボックスを作成する方法は?

GitHub Gistのノートボックス、警告ボックスなどのマークダウン警告ボックスを作成しようとしています。私はグーグルでいくつかの検索を行いますPython markdown admonitionsですが、これらの警告はGitHub Gistでは動作しないようです。

Python warning admonition を試しましたが、このマークダウン構文はGitHub Gistでは機能しません。

!!! Hello Admonition

私もbootstrapのようなボックスを試しましたが、期待通りのスタイルがありません:

<div class="alert alert-danger" role="alert">
    <div class="row vertical-align">
        <div class="col-xs-1 text-center">
            <i class="fa fa-exclamation-triangle fa-2x"></i>
        </div>
        <div class="col-xs-11">
                <strong>Error:</strong>                   
        </div>   
    </div> 
</div>

GitHub Gistの警告構文またはHTMLコードメソッドはありますか?

14
my-lord

tables を使用すると、次のようにいくつかの太字のテキストを含むボックスを作成できます。

| WARNING: be careful to baz the quux before initializing the retro encabulator! |
| --- |

これは次のようにレンダリングされます。

An image of a single-cell table, containing the text "WARNING: be careful to baz the quux before initializing the retro encabulator!"

少し構文の乱用ですが、動作します。残念ながら、Chrisが指摘したように、色のような他のフォーマットを適用する方法はありません。

22
Josh

私が離れていたほとんどのリポジトリは、ブロッククォートを使用して警告をシミュレートしました:

> **WARNING**: Be careful, or else!

以下は、セクションの上部だけでなく内部でも使用されている例です。

enter image description here

15
Swivel

emojiを使用して、ユーザーの注意を呼びます

> ⚠️ **Warning**: Be very careful here!

Github example

絵文字のリストは次のとおりです。 https://Gist.github.com/roachhd/1f029bd4b50b8a524f3c

10
Tiago Mendes

GitHub Flavored Markdownにはそのようなものはなく、その HTML、生成またはインライン、積極的にサニタイズされます です。

おそらく、基本的なことで間に合わせる必要があります。

_**Warning:** Be very careful here._

または

### Warning

Be very careful here
3
Chris