Updated the documentation for puts.rb to more correctly explain how template processing works with things like markdown or textile

This commit is contained in:
Brandon Mathis 2012-05-22 16:43:34 -05:00
parent 0df73625d3
commit ec98afe556

View File

@ -14,7 +14,7 @@ Puts is a Liquid block which outputs its contents to your terminal with Ruby's `
{% puts %}Optional Text: {{ some_liquid_variable }}{% endputs %}
{% endraw %}
This just outputs the contents of the block to the terminal. Note: Markdown, Textile and other converters run after liquid, so you'll see raw templating markup, not processed html.
This just outputs the contents of the block to the terminal. Note: Markdown, Textile and other converters run after liquid, so depending on where you use the block, you may see raw templating markup, not processed html.
#### Example 1