-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathtest-norm-rules.json
More file actions
103 lines (103 loc) · 2.68 KB
/
test-norm-rules.json
File metadata and controls
103 lines (103 loc) · 2.68 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"normative_rules": [
{
"name": "inline",
"def_filename": "tests/norm-rule/test.yaml",
"chapter_name": "my-chapter_name",
"kind": "extension",
"instances": [
"Zicsr",
"ABC"
],
"summary": "A few words",
"tags": [
{
"name": "norm:inline",
"text": "inside inline",
"tag_filename": "/build/test-norm-tags.json"
}
]
},
{
"name": "paragraph-with-a-really-wide-rule-name",
"def_filename": "tests/norm-rule/test.yaml",
"chapter_name": "my-chapter_name",
"description": "Here's a description.\nIt's got 2 lines.\n",
"tags": [
{
"name": "norm:para",
"text": "Paragraph anchor",
"tag_filename": "/build/test-norm-tags.json"
}
]
},
{
"name": "note_with_2_tags",
"def_filename": "tests/norm-rule/test.yaml",
"chapter_name": "my-chapter_name",
"kind": "parameter",
"instances": [
"MY_PARAMETER"
],
"description": "One line description",
"tags": [
{
"name": "norm:note-1",
"text": "Multi-paragraph note 1",
"tag_filename": "/build/test-norm-tags.json"
},
{
"name": "norm:note-3",
"text": "Multi-paragraph note 3",
"tag_filename": "/build/test-norm-tags.json"
}
]
},
{
"name": "desc1",
"def_filename": "tests/norm-rule/test.yaml",
"chapter_name": "my-chapter_name",
"tags": [
{
"name": "norm:description-item-1",
"text": "Description Item 1",
"tag_filename": "/build/test-norm-tags.json"
},
{
"name": "norm:description-item-3",
"text": "Description Item 3",
"tag_filename": "/build/test-norm-tags.json"
}
]
},
{
"name": "desc2",
"def_filename": "tests/norm-rule/test.yaml",
"chapter_name": "my-chapter_name",
"tags": [
{
"name": "norm:description-item-1",
"text": "Description Item 1",
"tag_filename": "/build/test-norm-tags.json"
},
{
"name": "norm:description-item-3",
"text": "Description Item 3",
"tag_filename": "/build/test-norm-tags.json"
}
]
},
{
"name": "rule_with_newlines",
"def_filename": "tests/norm-rule/test.yaml",
"chapter_name": "my-chapter_name",
"tags": [
{
"name": "norm:tag_with_newlines",
"text": "Here’s the first line.\nHere’s the second line.",
"tag_filename": "/build/test-norm-tags.json"
}
]
}
]
}