section_text_elements.py 756 B

123456789101112131415161718192021222324
  1. from . import (
  2. chat_message_documentation,
  3. doc,
  4. element_documentation,
  5. html_documentation,
  6. label_documentation,
  7. link_documentation,
  8. markdown_documentation,
  9. mermaid_documentation,
  10. restructured_text_documentation,
  11. )
  12. from .html_documentation import other_html_elements_description, other_html_elements_title, other_html_elements
  13. doc.title('*Text* Elements')
  14. doc.intro(label_documentation)
  15. doc.intro(link_documentation)
  16. doc.intro(chat_message_documentation)
  17. doc.intro(element_documentation)
  18. doc.intro(markdown_documentation)
  19. doc.intro(restructured_text_documentation)
  20. doc.intro(mermaid_documentation)
  21. doc.intro(html_documentation)
  22. doc.demo(other_html_elements_title, other_html_elements_description)(other_html_elements)