Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 25d7fd6

Browse files
committedMay 21, 2024·
Datasheet not final version
21/05/2024
1 parent 42e01e0 commit 25d7fd6

File tree

10 files changed

+463
-37
lines changed

10 files changed

+463
-37
lines changed
 

‎.vscode/tasks.json

Lines changed: 51 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,31 @@
1111
"cwd": "${workspaceFolder}${pathSeparator}scripts${pathSeparator}validation"
1212
},
1313
"windows": {
14-
"command": ".\\content-lint.cmd -p '..\\..\\content\\hardware\\'"
14+
"command": ".\\content-lint.cmd -p '..\\..\\content\\hardware\\'"
1515
},
1616
"group": "none",
1717
"presentation": {
1818
"reveal": "always",
1919
"panel": "dedicated",
2020
"clear": true
2121
},
22-
23-
"problemMatcher": [{
24-
"fileLocation": ["relative", "${workspaceFolder}${pathSeparator}scripts${pathSeparator}validation"],
25-
"owner": "linter",
26-
"pattern": {
27-
"regexp": "^.+\\s(WARNING|ERROR):\\s(.*)\\sLocation:\\s(.*\\.[A-Za-z]+):(\\d+):?(\\d*)$",
28-
"severity": 1,
29-
"message": 2,
30-
"file": 3,
31-
"line": 4,
32-
"column": 5
22+
"problemMatcher": [
23+
{
24+
"fileLocation": [
25+
"relative",
26+
"${workspaceFolder}${pathSeparator}scripts${pathSeparator}validation"
27+
],
28+
"owner": "linter",
29+
"pattern": {
30+
"regexp": "^.+\\s(WARNING|ERROR):\\s(.*)\\sLocation:\\s(.*\\.[A-Za-z]+):(\\d+):?(\\d*)$",
31+
"severity": 1,
32+
"message": 2,
33+
"file": 3,
34+
"line": 4,
35+
"column": 5
36+
}
3337
}
34-
}]
38+
]
3539
},
3640
{
3741
"label": "Run linter (current article)",
@@ -41,26 +45,31 @@
4145
"cwd": "${workspaceFolder}${pathSeparator}scripts${pathSeparator}validation"
4246
},
4347
"windows": {
44-
"command": ".\\content-lint.cmd -p '..\\..\\${relativeFile}' -c -v"
48+
"command": ".\\content-lint.cmd -p '..\\..\\${relativeFile}' -c -v"
4549
},
4650
"group": "none",
4751
"presentation": {
4852
"reveal": "always",
4953
"panel": "dedicated",
5054
"clear": true
5155
},
52-
"problemMatcher": [{
53-
"fileLocation": ["relative", "${workspaceFolder}${pathSeparator}scripts${pathSeparator}validation"],
54-
"owner": "linter",
55-
"pattern": {
56-
"regexp": "^.+\\s(WARNING|ERROR):\\s(.+)\\sLocation:\\s(.+\\.[A-Za-z]+):(\\d+):?(\\d*)$",
57-
"severity": 1,
58-
"message": 2,
59-
"file": 3,
60-
"line": 4,
61-
"column": 5
56+
"problemMatcher": [
57+
{
58+
"fileLocation": [
59+
"relative",
60+
"${workspaceFolder}${pathSeparator}scripts${pathSeparator}validation"
61+
],
62+
"owner": "linter",
63+
"pattern": {
64+
"regexp": "^.+\\s(WARNING|ERROR):\\s(.+)\\sLocation:\\s(.+\\.[A-Za-z]+):(\\d+):?(\\d*)$",
65+
"severity": 1,
66+
"message": 2,
67+
"file": 3,
68+
"line": 4,
69+
"column": 5
70+
}
6271
}
63-
}]
72+
]
6473
},
6574
{
6675
"label": "Fix linter issues (current article)",
@@ -70,7 +79,7 @@
7079
"cwd": "${workspaceFolder}${pathSeparator}scripts${pathSeparator}validation"
7180
},
7281
"windows": {
73-
"command": "node '.\\fix-issues.js' -p '..\\..\\${relativeFileDirname}'"
82+
"command": "node '.\\fix-issues.js' -p '..\\..\\${relativeFileDirname}'"
7483
},
7584
"group": "none",
7685
"presentation": {
@@ -104,7 +113,7 @@
104113
"cwd": "${workspaceFolder}${pathSeparator}scripts${pathSeparator}datasheet-rendering"
105114
},
106115
"windows": {
107-
"command": ".\\render-datasheets.cmd"
116+
"command": ".\\render-datasheets.cmd"
108117
},
109118
"group": "none",
110119
"presentation": {
@@ -121,7 +130,7 @@
121130
"cwd": "${workspaceFolder}${pathSeparator}scripts${pathSeparator}datasheet-rendering"
122131
},
123132
"windows": {
124-
"command": ".\\render-datasheets.cmd '..\\..\\${relativeFileDirname}'"
133+
"command": ".\\render-datasheets.cmd '..\\..\\${relativeFileDirname}'"
125134
},
126135
"group": "none",
127136
"presentation": {
@@ -145,16 +154,21 @@
145154
"reveal": "always",
146155
"panel": "shared"
147156
},
148-
"problemMatcher": [{
149-
"fileLocation": ["relative", "${workspaceFolder}"],
150-
"owner": "linter",
151-
"pattern": {
152-
"regexp": "^\\s*(\\S+):(\\d+):\\s(.+)$",
153-
"file": 1,
154-
"line": 2,
155-
"message": 3
157+
"problemMatcher": [
158+
{
159+
"fileLocation": [
160+
"relative",
161+
"${workspaceFolder}"
162+
],
163+
"owner": "linter",
164+
"pattern": {
165+
"regexp": "^\\s*(\\S+):(\\d+):\\s(.+)$",
166+
"file": 1,
167+
"line": 2,
168+
"message": 3
169+
}
156170
}
157-
}]
171+
]
158172
},
159173
{
160174
"label": "Fix misspellings",
Loading
Loading
Loading
Loading
Loading
Loading

‎content/hardware/10.mega/boards/due/datasheet/datasheet.md

Lines changed: 412 additions & 0 deletions
Large diffs are not rendered by default.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)
Please sign in to comment.