text4u
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. ];