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.

30 lines
411 B

  1. #include "config.h"
  2. char markdown_version[] = VERSION
  3. #if @TABSTOP@ != 4
  4. " TAB=@TABSTOP@"
  5. #endif
  6. #if USE_AMALLOC
  7. " DEBUG"
  8. #endif
  9. #if USE_DISCOUNT_DL
  10. # if USE_EXTRA_DL
  11. " DL=BOTH"
  12. # else
  13. " DL=DISCOUNT"
  14. # endif
  15. #elif USE_EXTRA_DL
  16. " DL=EXTRA"
  17. #else
  18. " DL=NONE"
  19. #endif
  20. #if WITH_ID_ANCHOR
  21. " ID-ANCHOR"
  22. #endif
  23. #if WITH_GITHUB_TAGS
  24. " GITHUB-TAGS"
  25. #endif
  26. #if WITH_FENCED_CODE
  27. " FENCED-CODE"
  28. #endif
  29. ;