You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will most likely require #70 so we can shim the streams if they can be used. I see two ways to handle this:
Parse the entire thing and then render bit by bit
We could parse the entire template and then keep on splicing parts of the AST off and rendering them instead of rendering the entire AST.
Parse bit by bit and render bit by bit
We could also use a special parsing engine based off the one we currently have which will find each %> parse until that and then render that and then repeat.
The second one would probably be a lot more faster than the first one, but it would be hard to do the partial parsing especially since we have stuff like allowing delimiters in comments and such. If we did the second way I think it would be best to wait until @nebrelbug shows up to do his parsing magic and stuff.
Is your feature request related to a problem? Please describe.
No not really.
Describe the solution you'd like
A function,
stream
?, that creates a stream which can be sent to the browser or destination for faster TTB.Describe alternatives you've considered
None.
The text was updated successfully, but these errors were encountered: