コード例 #1
0
ファイル: man.c プロジェクト: dguardia/dguardia.github.io
char *cmark_render_man(cmark_node *root, int options, int width) {
  return cmark_render_man_with_mem(root, options, width, cmark_node_mem(root));
}
コード例 #2
0
ファイル: html.c プロジェクト: cran/commonmark
char *cmark_render_html(cmark_node *root, int options, cmark_llist *extensions) {
  return cmark_render_html_with_mem(root, options, extensions, cmark_node_mem(root));
}