text4u
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

markdown.php 687B

12345678910111213141516171819202122232425262728
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Markdown Parser Configurations
  6. |--------------------------------------------------------------------------
  7. |
  8. | Here you may define the configuration arrays for each markdown parser.
  9. | You may use the base CommonMark options as well as any extensions'
  10. | options here. The available options are in the CommonMark docs.
  11. |
  12. | https://statamic.dev/extending/markdown#configuration
  13. |
  14. */
  15. 'configs' => [
  16. 'default' => [
  17. // 'heading_permalink' => [
  18. // 'symbol' => '#',
  19. // ],
  20. ],
  21. ],
  22. ];