Browse Source

HTML markup fix to Guide

pull/1240/head
Sami Vaarala 8 years ago
parent
commit
a00855f26a
  1. 21
      website/guide/duktapebuiltins.html

21
website/guide/duktapebuiltins.html

@ -8,18 +8,25 @@ objects, methods, and values.</p>
<table> <table>
<thead> <thead>
<tr> <tr>
<th>Property</th><th>Description</th> <th>Property</th>
<th>Description</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr><td class="propname"><a href="#builtin-duktape">Duktape</a></td> <tr>
<td>The Duktape built-in object. Contains miscellaneous implementation specific stuff.</td></tr> <td class="propname"><a href="#builtin-duktape">Duktape</a></td>
<tr><td class="propname"><a href="#builtin-textencoder">TextEncoder</a></td> <td>The Duktape built-in object. Contains miscellaneous implementation specific stuff.</td>
</tr>
<tr>
<td class="propname"><a href="#builtin-textencoder">TextEncoder</a></td>
<td>TextEncoder() from <a href="https://encoding.spec.whatwg.org/">WHATWG Encoding API</a>. <td>TextEncoder() from <a href="https://encoding.spec.whatwg.org/">WHATWG Encoding API</a>.
Converts a string into a buffer using UTF-8 encoding.</td></td> Converts a string into a buffer using UTF-8 encoding.</td>
<tr><td class="propname"><a href="#builtin-textdecoder">TextDecoder</a></td> </tr>
<tr>
<td class="propname"><a href="#builtin-textdecoder">TextDecoder</a></td>
<td>TextDecoder() from <a href="https://encoding.spec.whatwg.org/">WHATWG Encoding API</a>. <td>TextDecoder() from <a href="https://encoding.spec.whatwg.org/">WHATWG Encoding API</a>.
Converts a buffer into a string using UTF-8 encoding.</td></td> Converts a buffer into a string using UTF-8 encoding.</td>
</tr>
</tbody> </tbody>
</table> </table>

Loading…
Cancel
Save