UNPKG
mdlint
Version:
latest (0.1.0)
0.1.0
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
0.0.0
Lints markdown files to find JavaScript syntax errors
ChrisWren/mdlint
mdlint
/
test
/
fixtures
/
partials.md
35 lines
(24 loc)
•
230 B
Markdown
View Raw
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
# Object Partials
``
`js someObject: { } `
``
``
`js someObject : { } `
``
``
`js someFunction: function () { }, someProperty: true `
``
``
`js { someProperty: true } `
``
# Function Partials
``
`js function () { } `
``