Merge "Remove private="true" in .soy files"

This commit is contained in:
Wyatt Allen
2017-06-23 17:01:02 +00:00
committed by Gerrit Code Review

View File

@@ -24,7 +24,7 @@
* Private template to generate "View Change" buttons.
* @param email
*/
{template .ViewChangeButton private="true" autoescape="strict" kind="html"}
{template .ViewChangeButton autoescape="strict" kind="html"}
<a href="{$email.changeUrl}">View Change</a>
{/template}
@@ -32,7 +32,7 @@
* Private template to render PRE block with consistent font-sizing.
* @param content
*/
{template .Pre private="true" autoescape="strict" kind="html"}
{template .Pre autoescape="strict" kind="html"}
{let $preStyle kind="css"}
font-family: monospace,monospace; // Use this to avoid browsers scaling down
// monospace text.
@@ -56,7 +56,7 @@
*
* @param content
*/
{template .WikiFormat private="true" autoescape="strict" kind="html"}
{template .WikiFormat autoescape="strict" kind="html"}
{let $blockquoteStyle kind="css"}
border-left: 1px solid #aaa;
margin: 10px 0;
@@ -90,7 +90,7 @@
/**
* @param diffLines
*/
{template .UnifiedDiff private="true" autoescape="strict" kind="html"}
{template .UnifiedDiff autoescape="strict" kind="html"}
{let $addStyle kind="css"}
color: hsl(120, 100%, 40%);
{/let}