-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblock.json
More file actions
78 lines (78 loc) · 1.74 KB
/
Copy pathblock.json
File metadata and controls
78 lines (78 loc) · 1.74 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
{
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "bibliography-builder/bibliography",
"version": "1.4.2",
"title": "Bibliography",
"category": "text",
"icon": "book-alt",
"description": "A scholarly bibliography block. Add DOI(s), PubMed/PMID records, BibTeX entries, and supported citations to build a semantically rich, auto-sorted reference list.",
"selectors": {
"root": ".wp-block-bibliography-builder-bibliography",
"typography": {
"root": ".wp-block-bibliography-builder-bibliography .bibliography-builder-entry-text, .wp-block-bibliography-builder-bibliography .bibliography-builder-heading"
}
},
"keywords": [
"bibliography",
"citation",
"reference",
"doi",
"bibtex",
"scholarly"
],
"supports": {
"html": false,
"anchor": true,
"className": true,
"spacing": {
"margin": ["top", "bottom"],
"padding": ["top", "bottom"]
},
"typography": {
"fontSize": true
}
},
"textdomain": "borges-bibliography-builder",
"editorScript": "file:./build/index.js",
"editorStyle": "file:./build/index.css",
"style": "file:./build/style-index.css",
"viewScript": "file:./build/view.js",
"attributes": {
"citationStyle": {
"type": "string",
"default": "chicago-notes-bibliography"
},
"headingText": {
"type": "string",
"default": ""
},
"outputJsonLd": {
"type": "boolean",
"default": true
},
"outputCoins": {
"type": "boolean",
"default": false
},
"outputCslJson": {
"type": "boolean",
"default": false
},
"outputCiteExport": {
"type": "boolean",
"default": false
},
"bibliographyId": {
"type": "string",
"default": ""
},
"citations": {
"type": "array",
"default": [],
"items": {
"type": "object"
}
}
}
}