We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents df59254 + fed3163 commit 5f6842fCopy full SHA for 5f6842f
lib/resources/styles.css
@@ -238,6 +238,10 @@ dl dt.callable .name {
238
font-style: italic;
239
}
240
241
+.is-const {
242
+ font-style: italic;
243
+}
244
+
245
.deprecated {
246
text-decoration: line-through;
247
lib/templates/_constant.html
@@ -1,9 +1,12 @@
1
<dt id="{{htmlId}}" class="constant">
2
- <span class="top-level-variable-type">const {{{ linkedReturnType }}}</span>
+ <span class="top-level-variable-type">{{{ linkedReturnType }}}</span>
3
<span class="name {{#isDeprecated}}deprecated{{/isDeprecated}}">{{{ linkedName }}}</span>
4
=
5
<span class="constant-value">{{{ constantValue }}}</span>
6
</dt>
7
<dd>
8
+ <div class="is-const">
9
+ const
10
+ </div>
11
{{{ oneLineDoc }}}
-</dd>
12
+</dd>
0 commit comments