block.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "$schema": "https://schemas.wp.org/trunk/block.json",
  3. "apiVersion": 2,
  4. "name": "core/code",
  5. "title": "Code",
  6. "category": "text",
  7. "description": "Display code snippets that respect your spacing and tabs.",
  8. "textdomain": "default",
  9. "attributes": {
  10. "content": {
  11. "type": "string",
  12. "source": "html",
  13. "selector": "code"
  14. }
  15. },
  16. "supports": {
  17. "anchor": true,
  18. "typography": {
  19. "fontSize": true,
  20. "lineHeight": true,
  21. "__experimentalFontFamily": true,
  22. "__experimentalFontWeight": true,
  23. "__experimentalFontStyle": true,
  24. "__experimentalTextTransform": true,
  25. "__experimentalTextDecoration": true,
  26. "__experimentalLetterSpacing": true,
  27. "__experimentalDefaultControls": {
  28. "fontSize": true
  29. }
  30. },
  31. "spacing": {
  32. "margin": [ "top", "bottom" ],
  33. "padding": true
  34. },
  35. "__experimentalBorder": {
  36. "radius": true,
  37. "color": true,
  38. "width": true,
  39. "style": true,
  40. "__experimentalDefaultControls": {
  41. "width": true,
  42. "color": true
  43. }
  44. },
  45. "color": {
  46. "text": true,
  47. "background": true,
  48. "gradients": true,
  49. "__experimentalDefaultControls": {
  50. "background": true,
  51. "text": true
  52. }
  53. }
  54. },
  55. "style": "wp-block-code"
  56. }