-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathglossary_entry.html
70 lines (51 loc) · 1.81 KB
/
glossary_entry.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
lang: en
breadcrumbs:
- bitcoin
- dev docs
- glossary
- GLOSSARY_ENTRY_TITLE
end_of_page: |
<script src="/js/jquery/jquery-1.11.2.min.js"></script>
<script src="/js/jquery/jquery-ui.min.js"></script>
<script src="/js/devsearch.js"></script>
---
<link rel="stylesheet" href="/css/jquery-ui.min.css">
{% capture filename %}{{page.filename}}{% endcapture %}
{% include helpers/subhead-links.md %}
<br>
{% capture markdown_content %}
# {{page.required.title_max_40_characters_no_formatting}}
<input id="glossary_term" class="glossary_term" placeholder="Search the glossary, RPCs, and more">
<div markdown="block" class="notice">
<span markdown="span">This definition comes from the [technical glossary](/en/developer-glossary).</span>
</div>
## Definition
{% autocrossref %}
{{page.required.summary_max_255_characters_no_formatting}}
{% endautocrossref %}
### Synonyms
{% for synonym in page.required.synonyms_shown_in_glossary_capitalize_first_letter %}
* {{synonym}}
{% endfor %}
{% if page.optional.not_to_be_confused_with_capitalize_first_letter %}
### Not To Be Confused With
{% autocrossref %}
{% for term in page.optional.not_to_be_confused_with_capitalize_first_letter %}
* {{term}}
{% endfor %}
{% endautocrossref %}
{% endif %}
{% if page.optional.links_html_or_markdown_style_capitalize_first_letter %}
### Links
{% for link in page.optional.links_html_or_markdown_style_capitalize_first_letter %}
* {{link}}
{% endfor %}
{% endif %}
{% include references.md %}
{{site.glossary_links}}
{% endcapture %}
{{ markdown_content | markdownify }}{% comment %}Why is this hack necessary? I don't get why this template can't be natively rendered as markdown like the releases template.{% endcomment %}