Skip to content

Commit a983ba9

Browse files
authored
Merge pull request #22 from contentauth/cleanup
Cleanup
2 parents 42e954e + 130b058 commit a983ba9

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

_data/ManifestStore_schema_edited.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
}
7575
},
7676
"ClaimGeneratorInfo": {
77-
"description": "Description of the claim generator, or the software used in generating the claim.\n\nThis structure is also used for actions softwareAgent.",
77+
"description": "Description of the claim generator, or the software used in generating the claim.\n\nThis structure is also used for actions softwareAgent",
7878
"type": "object",
7979
"required": [
8080
"name"
@@ -133,7 +133,7 @@
133133
],
134134
"properties": {
135135
"actors": {
136-
"description": "A list of [`Actor`](#actor)s associated with this source.",
136+
"description": "A list of [`Actor`]s associated with this source.",
137137
"type": [
138138
"array",
139139
"null"
@@ -640,28 +640,28 @@
640640
"description": "The type of range for the region of interest.",
641641
"oneOf": [
642642
{
643-
"description": "A spatial range, see [`Shape`](#Shape) for more details.\n\n",
643+
"description": "A spatial range, see [`Shape`](#shape) for more details.\n\n",
644644
"type": "string",
645645
"enum": [
646646
"spatial"
647647
]
648648
},
649649
{
650-
"description": "A temporal range, see [`Time`](#Time) for more details.",
650+
"description": "A temporal range, see [`Time`](#time) for more details.",
651651
"type": "string",
652652
"enum": [
653653
"temporal"
654654
]
655655
},
656656
{
657-
"description": "A spatial range, see [`Frame`](#Frame) for more details.",
657+
"description": "A spatial range, see [`Frame`](#frame) for more details.",
658658
"type": "string",
659659
"enum": [
660660
"frame"
661661
]
662662
},
663663
{
664-
"description": "A textual range, see [`Text`](#Text) for more details.",
664+
"description": "A textual range, see [`Text`](#text) for more details.",
665665
"type": "string",
666666
"enum": [
667667
"textual"
@@ -1116,7 +1116,7 @@
11161116
}
11171117
},
11181118
"TextSelectorRange": {
1119-
"description": "One or two [`TextSelector`](#TextSelector) identifying the range to select.",
1119+
"description": "One or two [`TextSelector`](#textselector) objects identifying the range to select.",
11201120
"type": "object",
11211121
"required": [
11221122
"selector"

_includes/simple-type.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
{% elsif include.obj.type == "number" %}
55
Number
66
{% if include.obj.format %}
7-
FORMAT = {{include.obj.format}}
7+
/ {{include.obj.format}}
88
{%endif%}
99

1010
{% elsif include.obj.type == "integer" %}
1111
Integer
12-
{% if include.obj.format %} <br/>Format: {{obj.format}} {% endif %}
12+
{% if include.obj.format %} ({{obj.format}}) {% endif %}
1313
{% if include.obj.minimum %} <br/>Minimum: {{obj.minimum}} {% endif %}
1414

1515
{% elsif include.obj.type == "boolean" %}

_includes/type.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
{% else %}
3737
{% unless x=="null" %}
3838
{{x|capitalize}} <!-- {% comment %} Assumes that the type is not another array or object {% endcomment %} -->
39-
<br/>{%if obj.format %} Format: {{obj.format}} <br/>Minimum: {{obj.minimum}} {%endif%}
39+
{%if obj.format %} ({{obj.format}}) {%if obj.minimum %}<br/>Minimum: {{obj.minimum}} {%endif%} {%endif%}
4040
{% endunless %}
4141

4242
{% endif %}

pages/reference.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
</td>
4343

4444
<!-- Description -->
45-
<td class="manifest-ref-table">{{property.last.description|markdownify }}
45+
<td class="manifest-ref-table">{{property.last.description|markdownify}}
4646
{% if property.last.additionalProperties %}
4747
{% assign href=property.last.additionalProperties.first[1] %}
4848
<br/>See {% include ref-to-link.html ref=href %}
@@ -69,9 +69,9 @@
6969
<tr>
7070
<td style="border: 0; vertical-align: top;">
7171
{%- for term in schema.definitions -%}
72-
{% assign i = forloop.index0|modulo: 7 %}
72+
{% assign i = forloop.index0|modulo: 5 %}
7373
<a href="{{term.first | slugify | prepend: "#"}}">{{term.first}}</a> <br/>
74-
{% if i == 6 %}
74+
{% if i == 4 %}
7575
</td>
7676
{% unless forloop.last %}
7777
<td style="border: 0; vertical-align: top;">

0 commit comments

Comments
 (0)