You are here

filter.format.plain_text.yml in Drupal 8

Same filename and directory in other branches
  1. 9 core/modules/filter/config/install/filter.format.plain_text.yml
core/modules/filter/config/install/filter.format.plain_text.yml

File

core/modules/filter/config/install/filter.format.plain_text.yml
View source
  1. # Every site requires at least one text format as fallback format that
  2. # - is accessible to all users.
  3. # - is secure, using very basic formatting only.
  4. # - may be modified by installation profiles to have other properties.
  5. langcode: en
  6. status: true
  7. dependencies: { }
  8. name: 'Plain text'
  9. format: plain_text
  10. weight: 10
  11. filters:
  12. # Escape all HTML.
  13. filter_html_escape:
  14. id: filter_html_escape
  15. provider: filter
  16. status: true
  17. weight: -10
  18. settings: { }
  19. # Convert URLs into links.
  20. filter_url:
  21. id: filter_url
  22. provider: filter
  23. status: true
  24. weight: 0
  25. settings:
  26. filter_url_length: 72
  27. # Convert linebreaks into paragraphs.
  28. filter_autop:
  29. id: filter_autop
  30. provider: filter
  31. status: true
  32. weight: 0
  33. settings: { }