-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for common python string functions #134
Comments
If is it that you say : https://docs.python.org/fr/3/library/stdtypes.html#str I will work on it for Hacktoberfest :) |
Yes, exactly. Thanks! But before you start, lets discuss the exact set of methods to implement. |
Is it possible to first implement :
Is it too much ? :) |
More over, Good coding day |
I'm using Windows environment for development so Docker isn't my choice... |
That's a good list. One thing I care about: there is implementation of some of this methods as a filters/testers (ex. https://github.com/jinja2cpp/Jinja2Cpp/blob/master/src/string_converter_filter.cpp ) So, there should be a way to reuse this implementation somehow. |
Hi, For the Dockerfile, perhaps, just put it in wiki to prevent misunderstanding :) Yes, I have see that file :) Thank you |
Hey, Even if I have not ended that PR before the end of Hacktoberfest, I will finish it ;) Have a good coding day |
Thank you! |
Can you share your approach in handling user-callable for strings? Looks like I need to do the same for MapAdapter. |
It should be possible to call common python string functions (like
split
,partition
etc.) from the Jinja2 templates. Like this:The text was updated successfully, but these errors were encountered: