diff options
author | Peter Bengtsson <mail@peterbe.com> | 2021-08-02 18:18:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-02 19:18:30 -0300 |
commit | c372556f6b6e736496dce8f62f8ca346496c3e93 (patch) | |
tree | 456cb9e9fccfe0d3c2cbb57ed68a774ab69bae28 /files/pt-br/mdn/tools/kumascript | |
parent | 1dc3d721e3b43d4ddaa52e0c3f6ffb81ec2088ed (diff) | |
download | translated-content-c372556f6b6e736496dce8f62f8ca346496c3e93.tar.gz translated-content-c372556f6b6e736496dce8f62f8ca346496c3e93.tar.bz2 translated-content-c372556f6b6e736496dce8f62f8ca346496c3e93.zip |
remove link 'title' attributes that's just the 'href' (pt-br, part 6) (#1855)
Diffstat (limited to 'files/pt-br/mdn/tools/kumascript')
-rw-r--r-- | files/pt-br/mdn/tools/kumascript/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/pt-br/mdn/tools/kumascript/index.html b/files/pt-br/mdn/tools/kumascript/index.html index 51fb751707..b95ce12703 100644 --- a/files/pt-br/mdn/tools/kumascript/index.html +++ b/files/pt-br/mdn/tools/kumascript/index.html @@ -15,7 +15,7 @@ translation_of: MDN/Tools/KumaScript --- <div>{{MDNSidebar}}</div><h2 id="Overview">Overview</h2> -<p><span class="seoSummary">On the <a href="/en-US/docs/MDN/Kuma">Kuma</a> platform that powers MDN, the template system for automating aspects of content on the wiki is called <a class="link-https" href="https://github.com/mdn/kumascript">KumaScript</a>. KumaScript is powered by server-side JavaScript, implemented using <a class="external" href="https://nodejs.org/en/" title="https://nodejs.org/en/">Node.js</a>.</span> This article provides basic information on how to use KumaScript.</p> +<p><span class="seoSummary">On the <a href="/en-US/docs/MDN/Kuma">Kuma</a> platform that powers MDN, the template system for automating aspects of content on the wiki is called <a class="link-https" href="https://github.com/mdn/kumascript">KumaScript</a>. KumaScript is powered by server-side JavaScript, implemented using <a class="external" href="https://nodejs.org/en/">Node.js</a>.</span> This article provides basic information on how to use KumaScript.</p> <p>For a detailed overview and Q&A of KumaScript, watch the MDN dev team's <a href="https://vreplay.mozilla.com/replay/showRecordDetails.html?sortBy=date&viewCount=1&currentPage=1&groupBy=combo&roomFilter=&usernameFilter=&searchFilter=&usernameFullFilter=&myManager=-1&adminManager=0&webCast=0&command=&recId=1082&auxMessage=&auxMessage1=&lang=en&langChanged=&tenantFilter=&securityTab=">KumaScript Fireside Chat</a> (the meeting starts at 10 minutes into the video). KumaScript replaced DekiScript, which was the template language for MindTouch, the previous platform used by MDN.</p> @@ -81,7 +81,7 @@ Hello #2</pre> <p>The data from this macro is available in template code as an object in the <code>$0</code> argument (e.g., <code>$0.Alpha</code>, <code>$0.Beta</code>, <code>$0.Foo</code>). This also allows you to express complex data structures in macro parameters that are hard or impossible to do with a simple list of parameters.</p> -<p>Note that this parameter style is very picky — it must adhere to <a href="http://json.org/" title="http://json.org/">JSON syntax</a> exactly, which has some requirements about escaping characters that are easy to miss (e.g., all forward slashes are escaped). When in doubt, <a href="http://jsonlint.com/">try running your JSON through a validator</a>.</p> +<p>Note that this parameter style is very picky — it must adhere to <a href="http://json.org/">JSON syntax</a> exactly, which has some requirements about escaping characters that are easy to miss (e.g., all forward slashes are escaped). When in doubt, <a href="http://jsonlint.com/">try running your JSON through a validator</a>.</p> <h4 id="How_to_write_in_text">How to write "\{{" in text</h4> |