You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
1.5 KiB

1 year ago
  1. {
  2. "$schema": "https://schemas.wp.org/trunk/block.json",
  3. "apiVersion": 3,
  4. "name": "core/quote",
  5. "title": "Quote",
  6. "category": "text",
  7. "description": "Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar",
  8. "keywords": [ "blockquote", "cite" ],
  9. "textdomain": "default",
  10. "attributes": {
  11. "value": {
  12. "type": "string",
  13. "source": "html",
  14. "selector": "blockquote",
  15. "multiline": "p",
  16. "default": "",
  17. "__experimentalRole": "content"
  18. },
  19. "citation": {
  20. "type": "string",
  21. "source": "html",
  22. "selector": "cite",
  23. "default": "",
  24. "__experimentalRole": "content"
  25. },
  26. "align": {
  27. "type": "string"
  28. }
  29. },
  30. "supports": {
  31. "anchor": true,
  32. "html": false,
  33. "__experimentalOnEnter": true,
  34. "__experimentalOnMerge": true,
  35. "typography": {
  36. "fontSize": true,
  37. "lineHeight": true,
  38. "__experimentalFontFamily": true,
  39. "__experimentalFontWeight": true,
  40. "__experimentalFontStyle": true,
  41. "__experimentalTextTransform": true,
  42. "__experimentalTextDecoration": true,
  43. "__experimentalLetterSpacing": true,
  44. "__experimentalDefaultControls": {
  45. "fontSize": true,
  46. "fontAppearance": true
  47. }
  48. },
  49. "color": {
  50. "gradients": true,
  51. "heading": true,
  52. "link": true,
  53. "__experimentalDefaultControls": {
  54. "background": true,
  55. "text": true
  56. }
  57. }
  58. },
  59. "styles": [
  60. {
  61. "name": "default",
  62. "label": "Default",
  63. "isDefault": true
  64. },
  65. { "name": "plain", "label": "Plain" }
  66. ],
  67. "editorStyle": "wp-block-quote-editor",
  68. "style": "wp-block-quote"
  69. }