如何在GitHub Gist中制作一个带样式的Markdown警告框?

时间:2018-05-26 15:49:01

标签: markdown github-flavored-markdown

我正在尝试制作一个Markdown警告框,例如GitHub Gist的注释框,警告框。我在谷歌上做了一些搜索我发现了Python降价告诫,但这些告诫似乎不适用于GitHub Gist。

我尝试过Python warning admonition但是这种降价语法不适用于GitHub Gist。

!!! Hello Admonition

我也试过像这样的自举盒子,但它没有预期的样式:

<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代码方法?

6 个答案:

答案 0 :(得分:14)

您可以使用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!"

这有点滥用语法,但它有效。遗憾的是,没有办法像格林那样应用其他格式的颜色。

答案 1 :(得分:5)

我经常使用的大多数存储库都使用blockquote来模拟一个警告:

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

下面是一个示例,该示例在节的顶部和内部使用:

enter image description here

答案 2 :(得分:3)

在使用UTF8符号的标准减价中,这看起来非常不错:

> **⚠ WARNING: Aliens are coming.**  
> A description of the colour, smell and dangerous behaviour of the aliens.

像这样的渲染器:

⚠警告:外星人来了。
描述外星人的颜色,气味和危险行为。

答案 3 :(得分:2)

GitHub Flavored Markdown没有类似的东西及其HTML, generated or inline, is aggressively sanitized

您可能不得不使用基础知识,例如

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

### Warning

Be very careful here

答案 4 :(得分:0)

使用表情符号引起用户注意

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

Github example

以下是表情符号列表: https://gist.github.com/roachhd/1f029bd4b50b8a524f3c

答案 5 :(得分:-1)

可以这样简单地突出显示警告:

>[!WARNING]
>This is a warning

This is what it looks like