-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Corrected docs for parser plugins. Closes #1995
- Loading branch information
1 parent
b5c5a94
commit e218238
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -519,12 +519,12 @@ The following plugins are available when using the parser: | |
==================== ========================== ================================================================================== ================================================================ | ||
Plugin Arguments Description Example | ||
==================== ========================== ================================================================================== ================================================================ | ||
current_url Alias for the current_url helper function. {+ current_url +} | ||
previous_url Alias for the previous_url helper function. {+ previous_url +} | ||
site_url Alias for the site_url helper function. {+ site_url "login" +} | ||
mailto email, title, attributes Alias for the mailto helper function. {+ mailto [email protected] title="Stranger Things" +} | ||
safe_mailto email, title, attributes Alias for the safe_mailto helper function. {+ safe_mailto [email protected] title="Stranger Things" +} | ||
lang language string Alias for the lang helper function. {+ lang number.terabyteAbbr +} | ||
currentURL Alias for the current_url helper function. {+ currentURL +} | ||
previousURL Alias for the previous_url helper function. {+ previousURL +} | ||
siteURL Alias for the site_url helper function. {+ siteURL "login" +} | ||
mailto email, title, attributes Alias for the mailto helper function. {+ mailto [email protected] title="Stranger Things" +} | ||
safe_mailto email, title, attributes Alias for the safe_mailto helper function. {+ safe_mailto [email protected] title="Stranger Things" +} | ||
lang language string Alias for the lang helper function. {+ lang number.terabyteAbbr +} | ||
validation_errors fieldname(optional) Returns either error string for the field (if specified) or all validation errors. {+ validation_errors +} , {+ validation_errors field="email" +} | ||
route route name Alias for the route_to helper function. {+ route "login" +} | ||
==================== ========================== ================================================================================== ================================================================ | ||
|