sqlalchemy-bot
sqlalchemy-bot
**Migrated issue, originally created by Adam Twardoch ([@twardoch](https://github.com/twardoch))** I'm using Mako to process not HTML but other types of human-readable documents, specifically: * Markdown * YAML * [Adobe FEA](http://www.adobe.com/devnet/opentype/afdko/topic_feature_file_syntax.html) *...
**Migrated issue, originally created by jvanasco ([@jvanasco](https://github.com/jvanasco))** the github repo is coming up as a top match for a handful of mako searches, the bitbucket doesn't appear anywhere two suggestions:...
**Migrated issue, originally created by Bérenger Enselme ([@benselme](https://github.com/benselme))** This is using CPython 3.6.1 ``` from mako.template import Template if __name__ == '__main__': s = Template("""aaaabbbb""").render() assert s == 'aaaabbbb' #...
**Migrated issue, originally created by Glenn WIkle** You might think it is minor to have default values in an exception message but given that Mako is a parsing system, users...
**Migrated issue, originally created by Laurent DAVERIO ([@ldaverio](https://github.com/ldaverio))** When upgrading from Lingua 3.12 to Lingua 4.x, an attempt to extract strings from a Mako template fails with the following message:...
**Migrated issue, originally created by jvanasco ([@jvanasco](https://github.com/jvanasco))** I don't know if I'd be able to pull this off, but wanted to share publicly for feedback. I propose a new feature...
**Migrated issue, originally created by jvanasco ([@jvanasco](https://github.com/jvanasco))** I noticed this while bugfixing some parent templates in an inheritance chain. The following is raised when the template containing `${next.body()}` is called...
warn/raise when a def/block is named "body"; document all reserved words on "self" namespace, etc.
**Migrated issue, originally created by Anonymous** Hi, I was trying out mako and found a peculiar issue. If I have the name of a block as "body" the inheritance won't...
**Migrated issue, originally created by zaxebo1 zaxebo1 ([@zaxebo1](https://github.com/zaxebo1))** jinja2 has configurable syntax for delimiters. If you are generating LaTeX or other formats with Jinja2 you can change the delimiters to...
**Migrated issue, originally created by jvanasco ([@jvanasco](https://github.com/jvanasco))** I've run into a bit of an issue with whitespace and comments. We've been in a push to standardize templates into a few...