code-farmer-i / vue-markdown-editor

A markdown editor built on Vue
https://code-farmer-i.github.io/vue-markdown-editor/
MIT License
1.1k stars 109 forks source link

能否支持一下添加id的功能### My Great Heading {#custom-id} #225

Open LovelyAquarius opened 1 year ago

LovelyAquarius commented 1 year ago

please add the support for {#custom-id} syntax

ChenXiaoMian commented 1 year ago
$('[data-v-md-line]').each((index, el) => {
  const id = $(el).data('v-md-line');
  $(el).attr("id", `md-${id}`);
});

用jquery添加