PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / footnotes / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/footnotes/block.json

151 lines 3.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/footnotes",
5 "title": "Footnotes",
6 "description": "Academic-style footnotes with numbered inline markers and a full reference list.",
7 "category": "bkbg-blog",
8 "icon": "editor-ol",
9 "keywords": [
10 "footnotes",
11 "references",
12 "citations",
13 "academic",
14 "notes",
15 "endnotes"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-footnotes-editor",
19 "editorStyle": "bkbg-footnotes-style",
20 "style": "bkbg-footnotes-style",
21 "viewScript": "bkbg-footnotes-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "notes": {
33 "type": "array",
34 "default": [
35 {
36 "id": 1,
37 "text": "This is the first footnote. It contains supporting information or a citation."
38 },
39 {
40 "id": 2,
41 "text": "According to Smith et al. (2023), this approach yields significantly better results."
42 },
43 {
44 "id": 3,
45 "text": "See also: Johnson, R. (2022). Advanced Techniques in Web Publishing. Oxford Press."
46 }
47 ]
48 },
49 "title": {
50 "type": "string",
51 "default": "Notes"
52 },
53 "showTitle": {
54 "type": "boolean",
55 "default": true
56 },
57 "markerStyle": {
58 "type": "string",
59 "default": "number"
60 },
61 "markerSup": {
62 "type": "boolean",
63 "default": true
64 },
65 "showTooltip": {
66 "type": "boolean",
67 "default": true
68 },
69 "listStyle": {
70 "type": "string",
71 "default": "default"
72 },
73 "dividerEnabled": {
74 "type": "boolean",
75 "default": true
76 },
77 "fontSize": {
78 "type": "number",
79 "default": 14
80 },
81 "fontWeight": {
82 "type": "string",
83 "default": "400"
84 },
85 "lineHeight": {
86 "type": "number",
87 "default": 1.6
88 },
89 "titleSize": {
90 "type": "number",
91 "default": 16
92 },
93 "titleFontWeight": {
94 "type": "string",
95 "default": "600"
96 },
97 "titleLineHeight": {
98 "type": "number",
99 "default": 1.4
100 },
101 "typoTitle": {
102 "type": "object",
103 "default": {}
104 },
105 "typoNote": {
106 "type": "object",
107 "default": {}
108 },
109 "borderRadius": {
110 "type": "number",
111 "default": 6
112 },
113 "bgColor": {
114 "type": "string",
115 "default": "#f8fafc"
116 },
117 "borderColor": {
118 "type": "string",
119 "default": "#e2e8f0"
120 },
121 "titleColor": {
122 "type": "string",
123 "default": "#0f172a"
124 },
125 "textColor": {
126 "type": "string",
127 "default": "#475569"
128 },
129 "markerColor": {
130 "type": "string",
131 "default": "#3b82f6"
132 },
133 "markerBg": {
134 "type": "string",
135 "default": "#eff6ff"
136 },
137 "dividerColor": {
138 "type": "string",
139 "default": "#e2e8f0"
140 },
141 "tooltipBg": {
142 "type": "string",
143 "default": "#1e293b"
144 },
145 "tooltipColor": {
146 "type": "string",
147 "default": "#f1f5f9"
148 }
149 }
150 }
151