Constitution.PRC icon indicating copy to clipboard operation
Constitution.PRC copied to clipboard

consider use ordered list for Markdown document

Open notcome opened this issue 11 years ago • 0 comments

With CSS 2.1 Counters:

ol { counter-reset: item }
li { display: block }
li:before {
  content: "第" counter(item, cjk-ideographic) "条、";
  counter-increment: item;
}

notcome avatar Sep 24 '14 10:09 notcome