Do not show link to source.
This require slightly more work and has little benefits at this stage given that the sources are literally inlined in the docs.
This commit is contained in:
parent
e7f729c61b
commit
600c7747da
|
@ -50,9 +50,11 @@
|
||||||
</a>
|
</a>
|
||||||
</h2>
|
</h2>
|
||||||
{% if !type_info.source_url.is_empty() %}
|
{% if !type_info.source_url.is_empty() %}
|
||||||
|
<!-- TODO: support source linking
|
||||||
<a class="member-source" alt="View Source" title="View Source" href="{{ type_info.source_url|safe }}">
|
<a class="member-source" alt="View Source" title="View Source" href="{{ type_info.source_url|safe }}">
|
||||||
</>
|
</>
|
||||||
</a>
|
</a>
|
||||||
|
-->
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<div class="custom-type-constructors">
|
<div class="custom-type-constructors">
|
||||||
|
@ -119,9 +121,11 @@
|
||||||
</a>
|
</a>
|
||||||
</h2>
|
</h2>
|
||||||
{% if !constant.source_url.is_empty() %}
|
{% if !constant.source_url.is_empty() %}
|
||||||
|
<!-- TODO: support source linking
|
||||||
<a class="member-source" alt="View Source" title="View Source" href="{{ constant.source_url|safe }}">
|
<a class="member-source" alt="View Source" title="View Source" href="{{ constant.source_url|safe }}">
|
||||||
</>
|
</>
|
||||||
</a>
|
</a>
|
||||||
|
-->
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<pre><code class="hljs aiken">{{ constant.definition }}</code></pre>
|
<pre><code class="hljs aiken">{{ constant.definition }}</code></pre>
|
||||||
|
@ -145,9 +149,11 @@
|
||||||
</a>
|
</a>
|
||||||
</h2>
|
</h2>
|
||||||
{% if !function.source_url.is_empty() %}
|
{% if !function.source_url.is_empty() %}
|
||||||
|
<!-- TODO: support source linking
|
||||||
<a class="member-source" alt="View Source" title="View Source" href="{{ function.source_url|safe }}">
|
<a class="member-source" alt="View Source" title="View Source" href="{{ function.source_url|safe }}">
|
||||||
</>
|
</>
|
||||||
</a>
|
</a>
|
||||||
|
-->
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<pre><code class="hljs aiken">{{ function.signature }}</code></pre>
|
<pre><code class="hljs aiken">{{ function.signature }}</code></pre>
|
||||||
|
|
Loading…
Reference in New Issue