PluginProbe
CryptX / 4.2.1
CryptX v4.2.1
4.2.1 4.2.0 4.1.1 trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.9 2.0 2.1 2.2 2.3 2.3.1 2.3.2 2.3.3 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 All 93 releases
cryptx / src / block / block.json

block.json in CryptX 4.2.1, at src/block/block.json

59 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "cryptx/email",
5 "version": "4.2.0",
6 "title": "Protected email address",
7 "category": "text",
8 "icon": "email-alt",
9 "description": "An email address that spam bots cannot read but visitors can click.",
10 "keywords": [ "email", "mail", "address", "spam", "mailto" ],
11 "textdomain": "cryptx",
12 "attributes": {
13 "address": {
14 "type": "string",
15 "default": ""
16 },
17 "linkText": {
18 "type": "string",
19 "default": ""
20 },
21 "subject": {
22 "type": "string",
23 "default": ""
24 },
25 "body": {
26 "type": "string",
27 "default": ""
28 },
29 "cc": {
30 "type": "string",
31 "default": ""
32 },
33 "bcc": {
34 "type": "string",
35 "default": ""
36 }
37 },
38 "example": {
39 "attributes": {
40 "address": "info@example.com",
41 "linkText": "Write to us"
42 }
43 },
44 "supports": {
45 "html": false,
46 "reusable": true,
47 "spacing": {
48 "margin": true,
49 "padding": true
50 },
51 "typography": {
52 "fontSize": true,
53 "lineHeight": true
54 }
55 },
56 "editorScript": "file:./index.js",
57 "editorStyle": "file:./index.css"
58 }
59