mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-16 16:16:40 +03:00
a324958f2c
- always show Constructor heading for class constructors - hide top-level header that just repeats information from elsewhere - show namespace descriptions as a "class description" at the top - remove 2 redundant headers from tutorials that repeat the title - use a gray background for inline code, as github does - put more space between headings within a tutorial Issue #1259 Change-Id: I7eedd69b7a732da0f3292912ec07d97eccb44eed
22 lines
330 B
Cheetah
22 lines
330 B
Cheetah
<section>
|
|
|
|
<!--
|
|
<header>
|
|
<?js if (children.length > 0) { ?>
|
|
<ul><?js
|
|
var self = this;
|
|
children.forEach(function(t) { ?>
|
|
<li><?js= self.tutoriallink(t.name) ?></li>
|
|
<?js }); ?></ul>
|
|
<?js } ?>
|
|
|
|
<h2><?js= header ?></h2>
|
|
</header>
|
|
-->
|
|
|
|
<article>
|
|
<?js= content ?>
|
|
</article>
|
|
|
|
</section>
|