{
	"$schema": "https://json.schemastore.org/block.json",
	"apiVersion": 2,
	"name": "create-block/dmi-recipe-block",
	"version": "0.1.0",
	"title": "Dmi Recipe Block",
	"category": "widgets",
	"icon": "smiley",
	"description": "Example block written with ESNext standard and JSX support – build step required.",
	"supports": {
		"html": false
	},
	"textdomain": "dmi-recipe-block",
	"editorScript": "file:./build/index.js",
	"editorStyle": "file:./build/index.css",
	"style": "file:./build/style-index.css",
  "attributes": {
	"titleTag" : {
	  "type": "string",
	  "source": "attribute",
	  "selector": ".dmi-recipe-title",
	  "attribute": "data-tag",
	  "default": "h2"
	},
	"title": {
	  "type": "string",
	  "source": "html",
	  "selector": ".dmi-recipe-title"
	},
	"description": {
	  "type": "string",
	  "source": "html",
	  "selector": ".dmi-recipe-description"
	},
	"ingredientsTitleTag" : {
	  "type": "string",
	  "source": "attribute",
	  "selector": ".dmi-recipe-ingredients-title",
	  "attribute": "data-tag",
	  "default": "h3"
	},
	"ingredientsTitle" : {
	  "type": "string",
	  "source": "html",
	  "selector": ".dmi-recipe-ingredients-title"
	},
	"ingredients": {
	  "type": "string",
	  "source": "html",
	  "selector": ".dmi-recipe-ingredients"
	},
	"instructionsTitleTag" : {
	  "type": "string",
	  "source": "attribute",
	  "selector": ".dmi-recipe-instructions-title",
	  "attribute": "data-tag",
	  "default": "h3"
	},
	"instructionsTitle" : {
	  "type": "string",
	  "source": "html",
	  "selector": ".dmi-recipe-instructions-title"
	},
	"instructions": {
	  "type": "string",
	  "source": "html",
	  "selector": ".dmi-recipe-instructions"
	},
	"recipeYield" : {
	  "type": "string",
	  "source": "html",
	  "selector": ".dmi-recipe-yield"
	},
	"cookTime" : {
	  "type": "string",
	  "source": "html",
	  "selector": ".dmi-recipe-cook-time"
	},
	"prepTime" : {
	  "type": "string",
	  "source": "html",
	  "selector": ".dmi-recipe-prep-time"
	}
  }
}
