text4u
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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