mirror of
https://github.com/rwinkhart/glamour-temp-MUTN.git
synced 2026-09-06 00:47:15 -04:00
Rename Prefix|Suffix & Styled[Prefix|Suffix] => Block[Prefix|Suffix] & Prefix|Suffix
This commit is contained in:
+25
-25
@@ -5,16 +5,16 @@
|
||||
Block elements contain other elements and are rendered around them. All block
|
||||
elements support the following style settings:
|
||||
|
||||
| Attribute | Value | Description |
|
||||
| ---------------- | ------ | -------------------------------------------------- |
|
||||
| prefix | string | Printed before the block's first element |
|
||||
| suffix | string | Printed after the block's last element |
|
||||
| styled_prefix | string | Printed before the block's first element |
|
||||
| styled_suffix | string | Printed after the block's last element |
|
||||
| indent | number | Specifies the indentation of the block |
|
||||
| margin | number | Specifies the margin around the block |
|
||||
| color | color | Defines the default text color for the block |
|
||||
| background_color | color | Defines the default background color for the block |
|
||||
| Attribute | Value | Description |
|
||||
| ---------------- | ------ | ------------------------------------------------------------ |
|
||||
| block_prefix | string | Printed before the block's first element (in parent's style) |
|
||||
| block_suffix | string | Printed after the block's last element (in parent's style) |
|
||||
| prefix | string | Printed before the block's first element |
|
||||
| suffix | string | Printed after the block's last element |
|
||||
| indent | number | Specifies the indentation of the block |
|
||||
| margin | number | Specifies the margin around the block |
|
||||
| color | color | Defines the default text color for the block |
|
||||
| background_color | color | Defines the default background color for the block |
|
||||
|
||||
Elements inside a block inherit the block's following style settings:
|
||||
|
||||
@@ -44,8 +44,8 @@ Style:
|
||||
"document": {
|
||||
"indent": 2,
|
||||
"background_color": "234",
|
||||
"prefix": "\n",
|
||||
"suffix": "\n"
|
||||
"block_prefix": "\n",
|
||||
"block_suffix": "\n"
|
||||
}
|
||||
```
|
||||
|
||||
@@ -99,18 +99,18 @@ Style:
|
||||
"background_color": "57"
|
||||
},
|
||||
"h1": {
|
||||
"styled_prefix": "=> ",
|
||||
"styled_suffix": " <=",
|
||||
"prefix": "=> ",
|
||||
"suffix": " <=",
|
||||
"margin": 2,
|
||||
"bold": true,
|
||||
"background_color": "69"
|
||||
},
|
||||
"h2": {
|
||||
"styled_prefix": "## ",
|
||||
"prefix": "## ",
|
||||
"margin": 4
|
||||
},
|
||||
"h3": {
|
||||
"styled_prefix": "### ",
|
||||
"prefix": "### ",
|
||||
"margin": 6
|
||||
}
|
||||
```
|
||||
@@ -223,10 +223,10 @@ All inline elements support the following style settings:
|
||||
|
||||
| Attribute | Value | Description |
|
||||
| ---------------- | ------ | ----------------------------------------------------- |
|
||||
| block_prefix | string | Printed before the element (in parent's style) |
|
||||
| block_suffix | string | Printed after the element (in parent's style) |
|
||||
| prefix | string | Printed before the element |
|
||||
| suffix | string | Printed after the element |
|
||||
| styled_prefix | string | Printed before the element |
|
||||
| styled_suffix | string | Printed after the element |
|
||||
| color | color | Defines the default text color for the document |
|
||||
| background_color | color | Defines the default background color for the document |
|
||||
| bold | bool | Increases text intensity |
|
||||
@@ -275,7 +275,7 @@ Style:
|
||||
|
||||
```
|
||||
"item": {
|
||||
"prefix": "• "
|
||||
"block_prefix": "• "
|
||||
}
|
||||
```
|
||||
|
||||
@@ -302,7 +302,7 @@ Style:
|
||||
|
||||
```
|
||||
"enumeration": {
|
||||
"prefix": ". "
|
||||
"block_prefix": ". "
|
||||
}
|
||||
```
|
||||
|
||||
@@ -363,8 +363,8 @@ Style:
|
||||
"link": {
|
||||
"color": "123",
|
||||
"underline": true,
|
||||
"prefix": "(",
|
||||
"suffix": ")"
|
||||
"block_prefix": "(",
|
||||
"block_suffix": ")"
|
||||
}
|
||||
```
|
||||
|
||||
@@ -408,8 +408,8 @@ Style:
|
||||
```
|
||||
"image": {
|
||||
"color": "123",
|
||||
"prefix": "[Image: ",
|
||||
"suffix": "]"
|
||||
"block_prefix": "[Image: ",
|
||||
"block_suffix": "]"
|
||||
}
|
||||
```
|
||||
|
||||
@@ -523,7 +523,7 @@ Style:
|
||||
|
||||
```
|
||||
"hr": {
|
||||
"prefix": "---"
|
||||
"block_prefix": "---"
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
+18
-18
@@ -1,38 +1,38 @@
|
||||
{
|
||||
"document": {
|
||||
"indent": 4,
|
||||
"prefix": "\n\n",
|
||||
"suffix": "\n\n",
|
||||
"block_prefix": "\n\n",
|
||||
"block_suffix": "\n\n",
|
||||
"color": "252"
|
||||
},
|
||||
"heading": {
|
||||
"suffix": "\n",
|
||||
"block_suffix": "\n",
|
||||
"color": "39",
|
||||
"bold": true
|
||||
},
|
||||
"h1": {
|
||||
"suffix": "\n\n",
|
||||
"styled_prefix": " ",
|
||||
"styled_suffix": " ",
|
||||
"block_suffix": "\n\n",
|
||||
"prefix": " ",
|
||||
"suffix": " ",
|
||||
"background_color": "63",
|
||||
"color": "228",
|
||||
"bold": true
|
||||
},
|
||||
"h2": {
|
||||
"prefix": "\n",
|
||||
"styled_prefix": "## "
|
||||
"block_prefix": "\n",
|
||||
"prefix": "## "
|
||||
},
|
||||
"h3": {
|
||||
"styled_prefix": "### "
|
||||
"prefix": "### "
|
||||
},
|
||||
"h4": {
|
||||
"styled_prefix": "#### "
|
||||
"prefix": "#### "
|
||||
},
|
||||
"h5": {
|
||||
"styled_prefix": "##### "
|
||||
"prefix": "##### "
|
||||
},
|
||||
"h6": {
|
||||
"styled_prefix": "###### ",
|
||||
"prefix": "###### ",
|
||||
"color": "35",
|
||||
"bold": false
|
||||
},
|
||||
@@ -41,10 +41,10 @@
|
||||
"level_indent": 4
|
||||
},
|
||||
"item": {
|
||||
"prefix": "• "
|
||||
"block_prefix": "• "
|
||||
},
|
||||
"enumeration": {
|
||||
"prefix": ". "
|
||||
"block_prefix": ". "
|
||||
},
|
||||
"link_text": {
|
||||
"color": "35",
|
||||
@@ -63,8 +63,8 @@
|
||||
"color": "212"
|
||||
},
|
||||
"code": {
|
||||
"styled_prefix": " ",
|
||||
"styled_suffix": " ",
|
||||
"prefix": " ",
|
||||
"suffix": " ",
|
||||
"background_color": "236",
|
||||
"color": "203"
|
||||
},
|
||||
@@ -91,12 +91,12 @@
|
||||
"color": "240"
|
||||
},
|
||||
"block_quote": {
|
||||
"prefix": "> "
|
||||
"block_prefix": "> "
|
||||
},
|
||||
"definition_list": {},
|
||||
"definition_term": {},
|
||||
"definition_description": {
|
||||
"prefix": "\n🠶 "
|
||||
"block_prefix": "\n🠶 "
|
||||
},
|
||||
"html_block": {},
|
||||
"html_span": {}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"document": {
|
||||
"indent": 2,
|
||||
"background_color": "234",
|
||||
"prefix": "\n",
|
||||
"suffix": "\n"
|
||||
"block_prefix": "\n",
|
||||
"block_suffix": "\n"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,6 +4,6 @@
|
||||
"background_color": "52"
|
||||
},
|
||||
"enumeration": {
|
||||
"prefix": ". "
|
||||
"block_prefix": ". "
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,18 +4,18 @@
|
||||
"background_color": "57"
|
||||
},
|
||||
"h1": {
|
||||
"styled_prefix": "=> ",
|
||||
"styled_suffix": " <=",
|
||||
"prefix": "=> ",
|
||||
"suffix": " <=",
|
||||
"margin": 2,
|
||||
"bold": true,
|
||||
"background_color": "69"
|
||||
},
|
||||
"h2": {
|
||||
"styled_prefix": "## ",
|
||||
"prefix": "## ",
|
||||
"margin": 4
|
||||
},
|
||||
"h3": {
|
||||
"styled_prefix": "### ",
|
||||
"prefix": "### ",
|
||||
"margin": 6
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"image": {
|
||||
"color": "123",
|
||||
"prefix": "[Image: ",
|
||||
"suffix": "]"
|
||||
"block_prefix": "[Image: ",
|
||||
"block_suffix": "]"
|
||||
},
|
||||
"image_text": {
|
||||
"color": "8"
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
"link": {
|
||||
"color": "123",
|
||||
"underline": true,
|
||||
"prefix": "(",
|
||||
"suffix": ")"
|
||||
"block_prefix": "(",
|
||||
"block_suffix": ")"
|
||||
},
|
||||
"link_text": {
|
||||
"color": "123",
|
||||
|
||||
@@ -5,6 +5,6 @@
|
||||
"level_indent": 4
|
||||
},
|
||||
"item": {
|
||||
"prefix": "• "
|
||||
"block_prefix": "• "
|
||||
}
|
||||
}
|
||||
|
||||
+18
-18
@@ -1,38 +1,38 @@
|
||||
{
|
||||
"document": {
|
||||
"indent": 4,
|
||||
"prefix": "\n\n",
|
||||
"suffix": "\n\n",
|
||||
"block_prefix": "\n\n",
|
||||
"block_suffix": "\n\n",
|
||||
"color": "234"
|
||||
},
|
||||
"heading": {
|
||||
"suffix": "\n",
|
||||
"block_suffix": "\n",
|
||||
"color": "27",
|
||||
"bold": true
|
||||
},
|
||||
"h1": {
|
||||
"suffix": "\n\n",
|
||||
"styled_prefix": " ",
|
||||
"styled_suffix": " ",
|
||||
"block_suffix": "\n\n",
|
||||
"prefix": " ",
|
||||
"suffix": " ",
|
||||
"background_color": "63",
|
||||
"color": "228",
|
||||
"bold": true
|
||||
},
|
||||
"h2": {
|
||||
"prefix": "\n",
|
||||
"styled_prefix": "## "
|
||||
"block_prefix": "\n",
|
||||
"prefix": "## "
|
||||
},
|
||||
"h3": {
|
||||
"styled_prefix": "### "
|
||||
"prefix": "### "
|
||||
},
|
||||
"h4": {
|
||||
"styled_prefix": "#### "
|
||||
"prefix": "#### "
|
||||
},
|
||||
"h5": {
|
||||
"styled_prefix": "##### "
|
||||
"prefix": "##### "
|
||||
},
|
||||
"h6": {
|
||||
"styled_prefix": "###### ",
|
||||
"prefix": "###### ",
|
||||
"bold": false
|
||||
},
|
||||
"text": {},
|
||||
@@ -40,10 +40,10 @@
|
||||
"level_indent": 4
|
||||
},
|
||||
"item": {
|
||||
"prefix": "• "
|
||||
"block_prefix": "• "
|
||||
},
|
||||
"enumeration": {
|
||||
"prefix": ". "
|
||||
"block_prefix": ". "
|
||||
},
|
||||
"link_text": {
|
||||
"color": "29",
|
||||
@@ -62,8 +62,8 @@
|
||||
"color": "205"
|
||||
},
|
||||
"code": {
|
||||
"styled_prefix": " ",
|
||||
"styled_suffix": " ",
|
||||
"prefix": " ",
|
||||
"suffix": " ",
|
||||
"background_color": "254",
|
||||
"color": "203"
|
||||
},
|
||||
@@ -86,12 +86,12 @@
|
||||
"color": "240"
|
||||
},
|
||||
"block_quote": {
|
||||
"prefix": "> "
|
||||
"block_prefix": "> "
|
||||
},
|
||||
"definition_list": {},
|
||||
"definition_term": {},
|
||||
"definition_description": {
|
||||
"prefix": "\n🠶 "
|
||||
"block_prefix": "\n🠶 "
|
||||
},
|
||||
"html_block": {},
|
||||
"html_span": {}
|
||||
|
||||
+23
-23
@@ -1,41 +1,41 @@
|
||||
{
|
||||
"document": {
|
||||
"indent": 4,
|
||||
"prefix": "\n\n",
|
||||
"suffix": "\n\n"
|
||||
"block_prefix": "\n\n",
|
||||
"block_suffix": "\n\n"
|
||||
},
|
||||
"heading": {
|
||||
"suffix": "\n"
|
||||
"block_suffix": "\n"
|
||||
},
|
||||
"h1": {
|
||||
"suffix": "\n\n",
|
||||
"styled_prefix": "# "
|
||||
"block_suffix": "\n\n",
|
||||
"prefix": "# "
|
||||
},
|
||||
"h2": {
|
||||
"prefix": "\n",
|
||||
"styled_prefix": "## "
|
||||
"block_prefix": "\n",
|
||||
"prefix": "## "
|
||||
},
|
||||
"h3": {
|
||||
"styled_prefix": "### "
|
||||
"prefix": "### "
|
||||
},
|
||||
"h4": {
|
||||
"styled_prefix": "#### "
|
||||
"prefix": "#### "
|
||||
},
|
||||
"h5": {
|
||||
"styled_prefix": "##### "
|
||||
"prefix": "##### "
|
||||
},
|
||||
"h6": {
|
||||
"styled_prefix": "###### "
|
||||
"prefix": "###### "
|
||||
},
|
||||
"text": {},
|
||||
"list": {
|
||||
"level_indent": 4
|
||||
},
|
||||
"item": {
|
||||
"prefix": "• "
|
||||
"block_prefix": "• "
|
||||
},
|
||||
"enumeration": {
|
||||
"prefix": ". "
|
||||
"block_prefix": ". "
|
||||
},
|
||||
"link_text": {},
|
||||
"link": {},
|
||||
@@ -44,35 +44,35 @@
|
||||
},
|
||||
"image": {},
|
||||
"code": {
|
||||
"prefix": "`",
|
||||
"suffix": "`"
|
||||
"block_prefix": "`",
|
||||
"block_suffix": "`"
|
||||
},
|
||||
"code_block": {
|
||||
"margin": 4
|
||||
},
|
||||
"table": {},
|
||||
"strikethrough": {
|
||||
"prefix": "~~",
|
||||
"suffix": "~~"
|
||||
"block_prefix": "~~",
|
||||
"block_suffix": "~~"
|
||||
},
|
||||
"emph": {
|
||||
"prefix": "*",
|
||||
"suffix": "*"
|
||||
"block_prefix": "*",
|
||||
"block_suffix": "*"
|
||||
},
|
||||
"strong": {
|
||||
"prefix": "**",
|
||||
"suffix": "**"
|
||||
"block_prefix": "**",
|
||||
"block_suffix": "**"
|
||||
},
|
||||
"hr": {
|
||||
"format": "\n--------\n"
|
||||
},
|
||||
"block_quote": {
|
||||
"prefix": "> "
|
||||
"block_prefix": "> "
|
||||
},
|
||||
"definition_list": {},
|
||||
"definition_term": {},
|
||||
"definition_description": {
|
||||
"prefix": "\n🠶 "
|
||||
"block_prefix": "\n🠶 "
|
||||
},
|
||||
"html_block": {},
|
||||
"html_span": {}
|
||||
|
||||
Reference in New Issue
Block a user