LoginSignup
0
1

markdown-itでhtml要素に属性を追加する

Posted at

markdown-itでマークダウン形式のテキストをHTMLにパースするときに要素にclassやcssなどの属性を追加したいときは以下を実行します。

md.renderer.rules.要素名_open  = function () { return 'htmlタブ'; };

例えば、table要素にclass属性を追加したいときは以下を実行します。

md.renderer.rules.table_open = function() {
    return '<table class="table">';
};

参考URL

0
1
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
0
1