A fork of hyde, the static site generation. Some patches will be pushed upstream.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

45 lines
1.1 KiB

  1. # -*- coding: utf-8 -*-
  2. """
  3. Blockdown plugin
  4. """
  5. from hyde.plugin import TextyPlugin
  6. class BlockdownPlugin(TextyPlugin):
  7. """
  8. The plugin class for block text replacement.
  9. """
  10. def __init__(self, site):
  11. super(BlockdownPlugin, self).__init__(site)
  12. @property
  13. def tag_name(self):
  14. """
  15. The block tag.
  16. """
  17. return 'block'
  18. @property
  19. def default_open_pattern(self):
  20. """
  21. The default pattern for block open text.
  22. """
  23. return '^\s*===+([A-Za-z0-9_\-\.]+)=*\s*$'
  24. @property
  25. def default_close_pattern(self):
  26. """
  27. The default pattern for block close text.
  28. """
  29. return '^\s*===+/+\s*=*/*([A-Za-z0-9_\-\.]*)[\s=/]*$'
  30. def text_to_tag(self, match, start=True):
  31. """
  32. Replace open pattern (default:===[====]blockname[===========])
  33. with
  34. {% block blockname %} or equivalent and
  35. Replace close pattern (default===[====]/[blockname][===========])
  36. with
  37. {% endblock blockname %} or equivalent
  38. """
  39. return super(BlockdownPlugin, self).text_to_tag(match, start)