fjordllc / bootcamp

プログラマー向けEラーニングシステム
https://bootcamp.fjord.jp
MIT License
286 stars 71 forks source link

Markdownでfigureタグが使えるようにしたい。 #8075

Open machida opened 2 months ago

machida commented 2 months ago
:::figure
<img src="画像のURL" width="xxxxx" alt=" xxxxxx">
画像の説明ああああああああ
:::

このように書くと、

<figure>
    <img src="画像のURL" width="xxxxx" alt=" xxxxxx">
    <figcaption>
        画像の説明ああああああああ
    </figcaption>
</figure>

このように出力されるようにしたい。


:::figure
<img src="画像のURL" width="xxxxx" alt=" xxxxxx">
画像の説明ああああああああ
:::

上記の img タグは、textareにドラッグアンドドロップで画像をアップロードすることを想定しています。