Skip to content

0.8.1 (#54)

Compare
Choose a tag to compare
@pwwang pwwang released this 04 Jun 07:24
· 6 commits to master since this release
757b9bc
  • πŸ“ Fix badges in README.md
  • πŸ‘· Use latest actions in CI
  • πŸ—οΈ Enable automatic setup file creation with Poetry
  • ⬆️ Upgrade dependencies to the latest
  • ✨ Add * modifier for variable block to keep intial indention for multiline strings for all modes
    if True:
      {{* body }}
    
    with body:
    print("Hello")
    print("World")
    
    will be rendered into:
    if True:
      print("Hello")
      print("World")
    
    Note that the indention of print("World") was passed along from the initial indentaion.
  • πŸ“ Update doc for "indent modifier"