Text::Markdown::Discount
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
326 B

  1. /* block-level tags for passing html blocks through the blender
  2. */
  3. #ifndef _TAGS_D
  4. #define _TAGS_D
  5. struct kw {
  6. char *id;
  7. int size;
  8. int selfclose;
  9. } ;
  10. struct kw* mkd_search_tags(char *, int);
  11. void mkd_prepare_tags();
  12. void mkd_deallocate_tags();
  13. void mkd_sort_tags();
  14. void mkd_define_tag(char *, int);
  15. #endif