summaryrefslogtreecommitdiff
path: root/spec/fixtures
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-05-19 07:33:21 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2022-05-19 07:33:21 +0000
commit36a59d088eca61b834191dacea009677a96c052f (patch)
treee4f33972dab5d8ef79e3944a9f403035fceea43f /spec/fixtures
parenta1761f15ec2cae7c7f7bbda39a75494add0dfd6f (diff)
downloadgitlab-ce-36a59d088eca61b834191dacea009677a96c052f.tar.gz
Add latest changes from gitlab-org/gitlab@15-0-stable-eev15.0.0-rc42
Diffstat (limited to 'spec/fixtures')
-rw-r--r--spec/fixtures/api/schemas/graphql/container_repository.json5
-rw-r--r--spec/fixtures/api/schemas/public_api/v4/agent_token.json24
-rw-r--r--spec/fixtures/api/schemas/public_api/v4/agent_token_basic.json22
-rw-r--r--spec/fixtures/api/schemas/public_api/v4/agent_token_with_token.json26
-rw-r--r--spec/fixtures/api/schemas/public_api/v4/agent_tokens.json4
-rw-r--r--spec/fixtures/api/schemas/public_api/v4/environment.json2
-rw-r--r--spec/fixtures/glfm/example_snapshots/examples_index.yml2020
-rw-r--r--spec/fixtures/glfm/example_snapshots/html.yml6097
-rw-r--r--spec/fixtures/glfm/example_snapshots/markdown.yml2203
-rw-r--r--spec/fixtures/glfm/example_snapshots/prosemirror_json.yml16739
-rw-r--r--spec/fixtures/lib/gitlab/import_export/complex/project.json17
-rw-r--r--spec/fixtures/lib/gitlab/import_export/complex/tree/project/releases.ndjson2
-rw-r--r--spec/fixtures/lib/gitlab/import_export/designs/project.json1
-rw-r--r--spec/fixtures/lib/gitlab/import_export/multi_pipeline_ref_one_external_pr/project.json1
-rw-r--r--spec/fixtures/lib/gitlab/import_export/multi_pipeline_ref_one_external_pr/tree/project.json2
-rw-r--r--spec/fixtures/logo_sample.svg40
-rw-r--r--spec/fixtures/markdown/markdown_golden_master_examples.yml18
-rw-r--r--spec/fixtures/security_reports/master/gl-common-scanning-report.json700
18 files changed, 27595 insertions, 328 deletions
diff --git a/spec/fixtures/api/schemas/graphql/container_repository.json b/spec/fixtures/api/schemas/graphql/container_repository.json
index 04e67f73844..2bb598a14cb 100644
--- a/spec/fixtures/api/schemas/graphql/container_repository.json
+++ b/spec/fixtures/api/schemas/graphql/container_repository.json
@@ -1,6 +1,6 @@
{
"type": "object",
- "required": ["id", "name", "path", "location", "createdAt", "updatedAt", "tagsCount", "canDelete", "expirationPolicyCleanupStatus", "project"],
+ "required": ["id", "name", "path", "location", "createdAt", "updatedAt", "tagsCount", "canDelete", "expirationPolicyCleanupStatus", "project", "lastCleanupDeletedTagsCount"],
"properties": {
"id": {
"type": "string"
@@ -38,6 +38,9 @@
},
"project": {
"type": "object"
+ },
+ "lastCleanupDeletedTagsCount": {
+ "type": ["string", "null"]
}
}
}
diff --git a/spec/fixtures/api/schemas/public_api/v4/agent_token.json b/spec/fixtures/api/schemas/public_api/v4/agent_token.json
new file mode 100644
index 00000000000..8251ddd4de1
--- /dev/null
+++ b/spec/fixtures/api/schemas/public_api/v4/agent_token.json
@@ -0,0 +1,24 @@
+{
+ "type": "object",
+ "required": [
+ "id",
+ "name",
+ "description",
+ "agent_id",
+ "status",
+ "created_at",
+ "created_by_user_id",
+ "last_used_at"
+ ],
+ "properties": {
+ "id": { "type": "integer" },
+ "name": { "type": "string" },
+ "description": { "type": ["string", "null"] },
+ "agent_id": { "type": "integer" },
+ "status": { "type": "string" },
+ "created_at": { "type": "string", "format": "date-time" },
+ "created_by_user_id": { "type": "integer" },
+ "last_used_at": { "type": ["string", "null"], "format": "date-time" }
+ },
+ "additionalProperties": false
+}
diff --git a/spec/fixtures/api/schemas/public_api/v4/agent_token_basic.json b/spec/fixtures/api/schemas/public_api/v4/agent_token_basic.json
new file mode 100644
index 00000000000..90d9f35d0e1
--- /dev/null
+++ b/spec/fixtures/api/schemas/public_api/v4/agent_token_basic.json
@@ -0,0 +1,22 @@
+{
+ "type": "object",
+ "required": [
+ "id",
+ "name",
+ "description",
+ "agent_id",
+ "status",
+ "created_at",
+ "created_by_user_id"
+ ],
+ "properties": {
+ "id": { "type": "integer" },
+ "name": { "type": "string" },
+ "description": { "type": ["string", "null"] },
+ "agent_id": { "type": "integer" },
+ "status": { "type": "string" },
+ "created_at": { "type": "string", "format": "date-time" },
+ "created_by_user_id": { "type": "integer" }
+ },
+ "additionalProperties": false
+}
diff --git a/spec/fixtures/api/schemas/public_api/v4/agent_token_with_token.json b/spec/fixtures/api/schemas/public_api/v4/agent_token_with_token.json
new file mode 100644
index 00000000000..99d80817d0f
--- /dev/null
+++ b/spec/fixtures/api/schemas/public_api/v4/agent_token_with_token.json
@@ -0,0 +1,26 @@
+{
+ "type": "object",
+ "required": [
+ "id",
+ "name",
+ "description",
+ "agent_id",
+ "status",
+ "created_at",
+ "created_by_user_id",
+ "last_used_at",
+ "token"
+ ],
+ "properties": {
+ "id": { "type": "integer" },
+ "name": { "type": "string" },
+ "description": { "type": ["string", "null"] },
+ "agent_id": { "type": "integer" },
+ "status": { "type": "string" },
+ "created_at": { "type": "string", "format": "date-time" },
+ "created_by_user_id": { "type": "integer" },
+ "last_used_at": { "type": ["string", "null"], "format": "date-time" },
+ "token": { "type": "string" }
+ },
+ "additionalProperties": false
+}
diff --git a/spec/fixtures/api/schemas/public_api/v4/agent_tokens.json b/spec/fixtures/api/schemas/public_api/v4/agent_tokens.json
new file mode 100644
index 00000000000..f3d14d09b3d
--- /dev/null
+++ b/spec/fixtures/api/schemas/public_api/v4/agent_tokens.json
@@ -0,0 +1,4 @@
+{
+ "type": "array",
+ "items": { "$ref": "agent_token_basic.json" }
+}
diff --git a/spec/fixtures/api/schemas/public_api/v4/environment.json b/spec/fixtures/api/schemas/public_api/v4/environment.json
index 30104adaf5c..3a4c18343e3 100644
--- a/spec/fixtures/api/schemas/public_api/v4/environment.json
+++ b/spec/fixtures/api/schemas/public_api/v4/environment.json
@@ -4,6 +4,7 @@
"id",
"name",
"slug",
+ "tier",
"external_url",
"state",
"created_at",
@@ -13,6 +14,7 @@
"id": { "type": "integer" },
"name": { "type": "string" },
"slug": { "type": "string" },
+ "tier": { "type": "string" },
"external_url": { "$ref": "../../types/nullable_string.json" },
"last_deployment": {
"oneOf": [
diff --git a/spec/fixtures/glfm/example_snapshots/examples_index.yml b/spec/fixtures/glfm/example_snapshots/examples_index.yml
new file mode 100644
index 00000000000..98463a30cb6
--- /dev/null
+++ b/spec/fixtures/glfm/example_snapshots/examples_index.yml
@@ -0,0 +1,2020 @@
+---
+02_01__preliminaries__tabs__01:
+ spec_txt_example_position: 1
+ source_specification: commonmark
+02_01__preliminaries__tabs__02:
+ spec_txt_example_position: 2
+ source_specification: commonmark
+02_01__preliminaries__tabs__03:
+ spec_txt_example_position: 3
+ source_specification: commonmark
+02_01__preliminaries__tabs__04:
+ spec_txt_example_position: 4
+ source_specification: commonmark
+02_01__preliminaries__tabs__05:
+ spec_txt_example_position: 5
+ source_specification: commonmark
+02_01__preliminaries__tabs__06:
+ spec_txt_example_position: 6
+ source_specification: commonmark
+02_01__preliminaries__tabs__07:
+ spec_txt_example_position: 7
+ source_specification: commonmark
+02_01__preliminaries__tabs__08:
+ spec_txt_example_position: 8
+ source_specification: commonmark
+02_01__preliminaries__tabs__09:
+ spec_txt_example_position: 9
+ source_specification: commonmark
+02_01__preliminaries__tabs__10:
+ spec_txt_example_position: 10
+ source_specification: commonmark
+02_01__preliminaries__tabs__11:
+ spec_txt_example_position: 11
+ source_specification: commonmark
+03_01__blocks_and_inlines__precedence__01:
+ spec_txt_example_position: 12
+ source_specification: commonmark
+04_01__leaf_blocks__thematic_breaks__01:
+ spec_txt_example_position: 13
+ source_specification: commonmark
+04_01__leaf_blocks__thematic_breaks__02:
+ spec_txt_example_position: 14
+ source_specification: commonmark
+04_01__leaf_blocks__thematic_breaks__03:
+ spec_txt_example_position: 15
+ source_specification: commonmark
+04_01__leaf_blocks__thematic_breaks__04:
+ spec_txt_example_position: 16
+ source_specification: commonmark
+04_01__leaf_blocks__thematic_breaks__05:
+ spec_txt_example_position: 17
+ source_specification: commonmark
+04_01__leaf_blocks__thematic_breaks__06:
+ spec_txt_example_position: 18
+ source_specification: commonmark
+04_01__leaf_blocks__thematic_breaks__07:
+ spec_txt_example_position: 19
+ source_specification: commonmark
+04_01__leaf_blocks__thematic_breaks__08:
+ spec_txt_example_position: 20
+ source_specification: commonmark
+04_01__leaf_blocks__thematic_breaks__09:
+ spec_txt_example_position: 21
+ source_specification: commonmark
+04_01__leaf_blocks__thematic_breaks__10:
+ spec_txt_example_position: 22
+ source_specification: commonmark
+04_01__leaf_blocks__thematic_breaks__11:
+ spec_txt_example_position: 23
+ source_specification: commonmark
+04_01__leaf_blocks__thematic_breaks__12:
+ spec_txt_example_position: 24
+ source_specification: commonmark
+04_01__leaf_blocks__thematic_breaks__13:
+ spec_txt_example_position: 25
+ source_specification: commonmark
+04_01__leaf_blocks__thematic_breaks__14:
+ spec_txt_example_position: 26
+ source_specification: commonmark
+04_01__leaf_blocks__thematic_breaks__15:
+ spec_txt_example_position: 27
+ source_specification: commonmark
+04_01__leaf_blocks__thematic_breaks__16:
+ spec_txt_example_position: 28
+ source_specification: commonmark
+04_01__leaf_blocks__thematic_breaks__17:
+ spec_txt_example_position: 29
+ source_specification: commonmark
+04_01__leaf_blocks__thematic_breaks__18:
+ spec_txt_example_position: 30
+ source_specification: commonmark
+04_01__leaf_blocks__thematic_breaks__19:
+ spec_txt_example_position: 31
+ source_specification: commonmark
+04_02__leaf_blocks__atx_headings__01:
+ spec_txt_example_position: 32
+ source_specification: commonmark
+04_02__leaf_blocks__atx_headings__02:
+ spec_txt_example_position: 33
+ source_specification: commonmark
+04_02__leaf_blocks__atx_headings__03:
+ spec_txt_example_position: 34
+ source_specification: commonmark
+04_02__leaf_blocks__atx_headings__04:
+ spec_txt_example_position: 35
+ source_specification: commonmark
+04_02__leaf_blocks__atx_headings__05:
+ spec_txt_example_position: 36
+ source_specification: commonmark
+04_02__leaf_blocks__atx_headings__06:
+ spec_txt_example_position: 37
+ source_specification: commonmark
+04_02__leaf_blocks__atx_headings__07:
+ spec_txt_example_position: 38
+ source_specification: commonmark
+04_02__leaf_blocks__atx_headings__08:
+ spec_txt_example_position: 39
+ source_specification: commonmark
+04_02__leaf_blocks__atx_headings__09:
+ spec_txt_example_position: 40
+ source_specification: commonmark
+04_02__leaf_blocks__atx_headings__10:
+ spec_txt_example_position: 41
+ source_specification: commonmark
+04_02__leaf_blocks__atx_headings__11:
+ spec_txt_example_position: 42
+ source_specification: commonmark
+04_02__leaf_blocks__atx_headings__12:
+ spec_txt_example_position: 43
+ source_specification: commonmark
+04_02__leaf_blocks__atx_headings__13:
+ spec_txt_example_position: 44
+ source_specification: commonmark
+04_02__leaf_blocks__atx_headings__14:
+ spec_txt_example_position: 45
+ source_specification: commonmark
+04_02__leaf_blocks__atx_headings__15:
+ spec_txt_example_position: 46
+ source_specification: commonmark
+04_02__leaf_blocks__atx_headings__16:
+ spec_txt_example_position: 47
+ source_specification: commonmark
+04_02__leaf_blocks__atx_headings__17:
+ spec_txt_example_position: 48
+ source_specification: commonmark
+04_02__leaf_blocks__atx_headings__18:
+ spec_txt_example_position: 49
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__01:
+ spec_txt_example_position: 50
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__02:
+ spec_txt_example_position: 51
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__03:
+ spec_txt_example_position: 52
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__04:
+ spec_txt_example_position: 53
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__05:
+ spec_txt_example_position: 54
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__06:
+ spec_txt_example_position: 55
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__07:
+ spec_txt_example_position: 56
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__08:
+ spec_txt_example_position: 57
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__09:
+ spec_txt_example_position: 58
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__10:
+ spec_txt_example_position: 59
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__11:
+ spec_txt_example_position: 60
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__12:
+ spec_txt_example_position: 61
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__13:
+ spec_txt_example_position: 62
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__14:
+ spec_txt_example_position: 63
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__15:
+ spec_txt_example_position: 64
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__16:
+ spec_txt_example_position: 65
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__17:
+ spec_txt_example_position: 66
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__18:
+ spec_txt_example_position: 67
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__19:
+ spec_txt_example_position: 68
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__20:
+ spec_txt_example_position: 69
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__21:
+ spec_txt_example_position: 70
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__22:
+ spec_txt_example_position: 71
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__23:
+ spec_txt_example_position: 72
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__24:
+ spec_txt_example_position: 73
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__25:
+ spec_txt_example_position: 74
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__26:
+ spec_txt_example_position: 75
+ source_specification: commonmark
+04_03__leaf_blocks__setext_headings__27:
+ spec_txt_example_position: 76
+ source_specification: commonmark
+04_04__leaf_blocks__indented_code_blocks__01:
+ spec_txt_example_position: 77
+ source_specification: commonmark
+04_04__leaf_blocks__indented_code_blocks__02:
+ spec_txt_example_position: 78
+ source_specification: commonmark
+04_04__leaf_blocks__indented_code_blocks__03:
+ spec_txt_example_position: 79
+ source_specification: commonmark
+04_04__leaf_blocks__indented_code_blocks__04:
+ spec_txt_example_position: 80
+ source_specification: commonmark
+04_04__leaf_blocks__indented_code_blocks__05:
+ spec_txt_example_position: 81
+ source_specification: commonmark
+04_04__leaf_blocks__indented_code_blocks__06:
+ spec_txt_example_position: 82
+ source_specification: commonmark
+04_04__leaf_blocks__indented_code_blocks__07:
+ spec_txt_example_position: 83
+ source_specification: commonmark
+04_04__leaf_blocks__indented_code_blocks__08:
+ spec_txt_example_position: 84
+ source_specification: commonmark
+04_04__leaf_blocks__indented_code_blocks__09:
+ spec_txt_example_position: 85
+ source_specification: commonmark
+04_04__leaf_blocks__indented_code_blocks__10:
+ spec_txt_example_position: 86
+ source_specification: commonmark
+04_04__leaf_blocks__indented_code_blocks__11:
+ spec_txt_example_position: 87
+ source_specification: commonmark
+04_04__leaf_blocks__indented_code_blocks__12:
+ spec_txt_example_position: 88
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__01:
+ spec_txt_example_position: 89
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__02:
+ spec_txt_example_position: 90
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__03:
+ spec_txt_example_position: 91
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__04:
+ spec_txt_example_position: 92
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__05:
+ spec_txt_example_position: 93
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__06:
+ spec_txt_example_position: 94
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__07:
+ spec_txt_example_position: 95
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__08:
+ spec_txt_example_position: 96
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__09:
+ spec_txt_example_position: 97
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__10:
+ spec_txt_example_position: 98
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__11:
+ spec_txt_example_position: 99
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__12:
+ spec_txt_example_position: 100
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__13:
+ spec_txt_example_position: 101
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__14:
+ spec_txt_example_position: 102
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__15:
+ spec_txt_example_position: 103
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__16:
+ spec_txt_example_position: 104
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__17:
+ spec_txt_example_position: 105
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__18:
+ spec_txt_example_position: 106
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__19:
+ spec_txt_example_position: 107
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__20:
+ spec_txt_example_position: 108
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__21:
+ spec_txt_example_position: 109
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__22:
+ spec_txt_example_position: 110
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__23:
+ spec_txt_example_position: 111
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__24:
+ spec_txt_example_position: 112
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__25:
+ spec_txt_example_position: 113
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__26:
+ spec_txt_example_position: 114
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__27:
+ spec_txt_example_position: 115
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__28:
+ spec_txt_example_position: 116
+ source_specification: commonmark
+04_05__leaf_blocks__fenced_code_blocks__29:
+ spec_txt_example_position: 117
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__01:
+ spec_txt_example_position: 118
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__02:
+ spec_txt_example_position: 119
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__03:
+ spec_txt_example_position: 120
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__04:
+ spec_txt_example_position: 121
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__05:
+ spec_txt_example_position: 122
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__06:
+ spec_txt_example_position: 123
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__07:
+ spec_txt_example_position: 124
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__08:
+ spec_txt_example_position: 125
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__09:
+ spec_txt_example_position: 126
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__10:
+ spec_txt_example_position: 127
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__11:
+ spec_txt_example_position: 128
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__12:
+ spec_txt_example_position: 129
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__13:
+ spec_txt_example_position: 130
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__14:
+ spec_txt_example_position: 131
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__15:
+ spec_txt_example_position: 132
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__16:
+ spec_txt_example_position: 133
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__17:
+ spec_txt_example_position: 134
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__18:
+ spec_txt_example_position: 135
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__19:
+ spec_txt_example_position: 136
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__20:
+ spec_txt_example_position: 137
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__21:
+ spec_txt_example_position: 138
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__22:
+ spec_txt_example_position: 139
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__23:
+ spec_txt_example_position: 140
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__24:
+ spec_txt_example_position: 141
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__25:
+ spec_txt_example_position: 142
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__26:
+ spec_txt_example_position: 143
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__27:
+ spec_txt_example_position: 144
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__28:
+ spec_txt_example_position: 145
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__29:
+ spec_txt_example_position: 146
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__30:
+ spec_txt_example_position: 147
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__31:
+ spec_txt_example_position: 148
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__32:
+ spec_txt_example_position: 149
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__33:
+ spec_txt_example_position: 150
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__34:
+ spec_txt_example_position: 151
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__35:
+ spec_txt_example_position: 152
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__36:
+ spec_txt_example_position: 153
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__37:
+ spec_txt_example_position: 154
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__38:
+ spec_txt_example_position: 155
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__39:
+ spec_txt_example_position: 156
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__40:
+ spec_txt_example_position: 157
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__41:
+ spec_txt_example_position: 158
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__42:
+ spec_txt_example_position: 159
+ source_specification: commonmark
+04_06__leaf_blocks__html_blocks__43:
+ spec_txt_example_position: 160
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__01:
+ spec_txt_example_position: 161
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__02:
+ spec_txt_example_position: 162
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__03:
+ spec_txt_example_position: 163
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__04:
+ spec_txt_example_position: 164
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__05:
+ spec_txt_example_position: 165
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__06:
+ spec_txt_example_position: 166
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__07:
+ spec_txt_example_position: 167
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__08:
+ spec_txt_example_position: 168
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__09:
+ spec_txt_example_position: 169
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__10:
+ spec_txt_example_position: 170
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__11:
+ spec_txt_example_position: 171
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__12:
+ spec_txt_example_position: 172
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__13:
+ spec_txt_example_position: 173
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__14:
+ spec_txt_example_position: 174
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__15:
+ spec_txt_example_position: 175
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__16:
+ spec_txt_example_position: 176
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__17:
+ spec_txt_example_position: 177
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__18:
+ spec_txt_example_position: 178
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__19:
+ spec_txt_example_position: 179
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__20:
+ spec_txt_example_position: 180
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__21:
+ spec_txt_example_position: 181
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__22:
+ spec_txt_example_position: 182
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__23:
+ spec_txt_example_position: 183
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__24:
+ spec_txt_example_position: 184
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__25:
+ spec_txt_example_position: 185
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__26:
+ spec_txt_example_position: 186
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__27:
+ spec_txt_example_position: 187
+ source_specification: commonmark
+04_07__leaf_blocks__link_reference_definitions__28:
+ spec_txt_example_position: 188
+ source_specification: commonmark
+04_08__leaf_blocks__paragraphs__01:
+ spec_txt_example_position: 189
+ source_specification: commonmark
+04_08__leaf_blocks__paragraphs__02:
+ spec_txt_example_position: 190
+ source_specification: commonmark
+04_08__leaf_blocks__paragraphs__03:
+ spec_txt_example_position: 191
+ source_specification: commonmark
+04_08__leaf_blocks__paragraphs__04:
+ spec_txt_example_position: 192
+ source_specification: commonmark
+04_08__leaf_blocks__paragraphs__05:
+ spec_txt_example_position: 193
+ source_specification: commonmark
+04_08__leaf_blocks__paragraphs__06:
+ spec_txt_example_position: 194
+ source_specification: commonmark
+04_08__leaf_blocks__paragraphs__07:
+ spec_txt_example_position: 195
+ source_specification: commonmark
+04_08__leaf_blocks__paragraphs__08:
+ spec_txt_example_position: 196
+ source_specification: commonmark
+04_09__leaf_blocks__blank_lines__01:
+ spec_txt_example_position: 197
+ source_specification: commonmark
+04_10__leaf_blocks__tables_extension__01:
+ spec_txt_example_position: 198
+ source_specification: github
+04_10__leaf_blocks__tables_extension__02:
+ spec_txt_example_position: 199
+ source_specification: github
+04_10__leaf_blocks__tables_extension__03:
+ spec_txt_example_position: 200
+ source_specification: github
+04_10__leaf_blocks__tables_extension__04:
+ spec_txt_example_position: 201
+ source_specification: github
+04_10__leaf_blocks__tables_extension__05:
+ spec_txt_example_position: 202
+ source_specification: github
+04_10__leaf_blocks__tables_extension__06:
+ spec_txt_example_position: 203
+ source_specification: github
+04_10__leaf_blocks__tables_extension__07:
+ spec_txt_example_position: 204
+ source_specification: github
+04_10__leaf_blocks__tables_extension__08:
+ spec_txt_example_position: 205
+ source_specification: github
+05_01__container_blocks__block_quotes__01:
+ spec_txt_example_position: 206
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__02:
+ spec_txt_example_position: 207
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__03:
+ spec_txt_example_position: 208
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__04:
+ spec_txt_example_position: 209
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__05:
+ spec_txt_example_position: 210
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__06:
+ spec_txt_example_position: 211
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__07:
+ spec_txt_example_position: 212
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__08:
+ spec_txt_example_position: 213
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__09:
+ spec_txt_example_position: 214
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__10:
+ spec_txt_example_position: 215
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__11:
+ spec_txt_example_position: 216
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__12:
+ spec_txt_example_position: 217
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__13:
+ spec_txt_example_position: 218
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__14:
+ spec_txt_example_position: 219
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__15:
+ spec_txt_example_position: 220
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__16:
+ spec_txt_example_position: 221
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__17:
+ spec_txt_example_position: 222
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__18:
+ spec_txt_example_position: 223
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__19:
+ spec_txt_example_position: 224
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__20:
+ spec_txt_example_position: 225
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__21:
+ spec_txt_example_position: 226
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__22:
+ spec_txt_example_position: 227
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__23:
+ spec_txt_example_position: 228
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__24:
+ spec_txt_example_position: 229
+ source_specification: commonmark
+05_01__container_blocks__block_quotes__25:
+ spec_txt_example_position: 230
+ source_specification: commonmark
+05_02__container_blocks__list_items__01:
+ spec_txt_example_position: 231
+ source_specification: commonmark
+05_02__container_blocks__list_items__02:
+ spec_txt_example_position: 232
+ source_specification: commonmark
+05_02__container_blocks__list_items__03:
+ spec_txt_example_position: 233
+ source_specification: commonmark
+05_02__container_blocks__list_items__04:
+ spec_txt_example_position: 234
+ source_specification: commonmark
+05_02__container_blocks__list_items__05:
+ spec_txt_example_position: 235
+ source_specification: commonmark
+05_02__container_blocks__list_items__06:
+ spec_txt_example_position: 236
+ source_specification: commonmark
+05_02__container_blocks__list_items__07:
+ spec_txt_example_position: 237
+ source_specification: commonmark
+05_02__container_blocks__list_items__08:
+ spec_txt_example_position: 238
+ source_specification: commonmark
+05_02__container_blocks__list_items__09:
+ spec_txt_example_position: 239
+ source_specification: commonmark
+05_02__container_blocks__list_items__10:
+ spec_txt_example_position: 240
+ source_specification: commonmark
+05_02__container_blocks__list_items__11:
+ spec_txt_example_position: 241
+ source_specification: commonmark
+05_02__container_blocks__list_items__12:
+ spec_txt_example_position: 242
+ source_specification: commonmark
+05_02__container_blocks__list_items__13:
+ spec_txt_example_position: 243
+ source_specification: commonmark
+05_02__container_blocks__list_items__14:
+ spec_txt_example_position: 244
+ source_specification: commonmark
+05_02__container_blocks__list_items__15:
+ spec_txt_example_position: 245
+ source_specification: commonmark
+05_02__container_blocks__list_items__16:
+ spec_txt_example_position: 246
+ source_specification: commonmark
+05_02__container_blocks__list_items__17:
+ spec_txt_example_position: 247
+ source_specification: commonmark
+05_02__container_blocks__list_items__18:
+ spec_txt_example_position: 248
+ source_specification: commonmark
+05_02__container_blocks__list_items__19:
+ spec_txt_example_position: 249
+ source_specification: commonmark
+05_02__container_blocks__list_items__20:
+ spec_txt_example_position: 250
+ source_specification: commonmark
+05_02__container_blocks__list_items__21:
+ spec_txt_example_position: 251
+ source_specification: commonmark
+05_02__container_blocks__list_items__22:
+ spec_txt_example_position: 252
+ source_specification: commonmark
+05_02__container_blocks__list_items__23:
+ spec_txt_example_position: 253
+ source_specification: commonmark
+05_02__container_blocks__list_items__24:
+ spec_txt_example_position: 254
+ source_specification: commonmark
+05_02__container_blocks__list_items__25:
+ spec_txt_example_position: 255
+ source_specification: commonmark
+05_02__container_blocks__list_items__26:
+ spec_txt_example_position: 256
+ source_specification: commonmark
+05_02__container_blocks__list_items__27:
+ spec_txt_example_position: 257
+ source_specification: commonmark
+05_02__container_blocks__list_items__28:
+ spec_txt_example_position: 258
+ source_specification: commonmark
+05_02__container_blocks__list_items__29:
+ spec_txt_example_position: 259
+ source_specification: commonmark
+05_02__container_blocks__list_items__30:
+ spec_txt_example_position: 260
+ source_specification: commonmark
+05_02__container_blocks__list_items__31:
+ spec_txt_example_position: 261
+ source_specification: commonmark
+05_02__container_blocks__list_items__32:
+ spec_txt_example_position: 262
+ source_specification: commonmark
+05_02__container_blocks__list_items__33:
+ spec_txt_example_position: 263
+ source_specification: commonmark
+05_02__container_blocks__list_items__34:
+ spec_txt_example_position: 264
+ source_specification: commonmark
+05_02__container_blocks__list_items__35:
+ spec_txt_example_position: 265
+ source_specification: commonmark
+05_02__container_blocks__list_items__36:
+ spec_txt_example_position: 266
+ source_specification: commonmark
+05_02__container_blocks__list_items__37:
+ spec_txt_example_position: 267
+ source_specification: commonmark
+05_02__container_blocks__list_items__38:
+ spec_txt_example_position: 268
+ source_specification: commonmark
+05_02__container_blocks__list_items__39:
+ spec_txt_example_position: 269
+ source_specification: commonmark
+05_02__container_blocks__list_items__40:
+ spec_txt_example_position: 270
+ source_specification: commonmark
+05_02__container_blocks__list_items__41:
+ spec_txt_example_position: 271
+ source_specification: commonmark
+05_02__container_blocks__list_items__42:
+ spec_txt_example_position: 272
+ source_specification: commonmark
+05_02__container_blocks__list_items__43:
+ spec_txt_example_position: 273
+ source_specification: commonmark
+05_02__container_blocks__list_items__44:
+ spec_txt_example_position: 274
+ source_specification: commonmark
+05_02__container_blocks__list_items__45:
+ spec_txt_example_position: 275
+ source_specification: commonmark
+05_02__container_blocks__list_items__46:
+ spec_txt_example_position: 276
+ source_specification: commonmark
+05_02__container_blocks__list_items__47:
+ spec_txt_example_position: 277
+ source_specification: commonmark
+05_02__container_blocks__list_items__48:
+ spec_txt_example_position: 278
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__49:
+ spec_txt_example_position: 281
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__50:
+ spec_txt_example_position: 282
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__51:
+ spec_txt_example_position: 283
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__52:
+ spec_txt_example_position: 284
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__53:
+ spec_txt_example_position: 285
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__54:
+ spec_txt_example_position: 286
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__55:
+ spec_txt_example_position: 287
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__56:
+ spec_txt_example_position: 288
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__57:
+ spec_txt_example_position: 289
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__58:
+ spec_txt_example_position: 290
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__59:
+ spec_txt_example_position: 291
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__60:
+ spec_txt_example_position: 292
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__61:
+ spec_txt_example_position: 293
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__62:
+ spec_txt_example_position: 294
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__63:
+ spec_txt_example_position: 295
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__64:
+ spec_txt_example_position: 296
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__65:
+ spec_txt_example_position: 297
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__66:
+ spec_txt_example_position: 298
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__67:
+ spec_txt_example_position: 299
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__68:
+ spec_txt_example_position: 300
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__69:
+ spec_txt_example_position: 301
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__70:
+ spec_txt_example_position: 302
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__71:
+ spec_txt_example_position: 303
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__72:
+ spec_txt_example_position: 304
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__73:
+ spec_txt_example_position: 305
+ source_specification: commonmark
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__74:
+ spec_txt_example_position: 306
+ source_specification: commonmark
+06_01__inlines__01:
+ spec_txt_example_position: 307
+ source_specification: commonmark
+06_02__inlines__backslash_escapes__01:
+ spec_txt_example_position: 308
+ source_specification: commonmark
+06_02__inlines__backslash_escapes__02:
+ spec_txt_example_position: 309
+ source_specification: commonmark
+06_02__inlines__backslash_escapes__03:
+ spec_txt_example_position: 310
+ source_specification: commonmark
+06_02__inlines__backslash_escapes__04:
+ spec_txt_example_position: 311
+ source_specification: commonmark
+06_02__inlines__backslash_escapes__05:
+ spec_txt_example_position: 312
+ source_specification: commonmark
+06_02__inlines__backslash_escapes__06:
+ spec_txt_example_position: 313
+ source_specification: commonmark
+06_02__inlines__backslash_escapes__07:
+ spec_txt_example_position: 314
+ source_specification: commonmark
+06_02__inlines__backslash_escapes__08:
+ spec_txt_example_position: 315
+ source_specification: commonmark
+06_02__inlines__backslash_escapes__09:
+ spec_txt_example_position: 316
+ source_specification: commonmark
+06_02__inlines__backslash_escapes__10:
+ spec_txt_example_position: 317
+ source_specification: commonmark
+06_02__inlines__backslash_escapes__11:
+ spec_txt_example_position: 318
+ source_specification: commonmark
+06_02__inlines__backslash_escapes__12:
+ spec_txt_example_position: 319
+ source_specification: commonmark
+06_02__inlines__backslash_escapes__13:
+ spec_txt_example_position: 320
+ source_specification: commonmark
+06_03__inlines__entity_and_numeric_character_references__01:
+ spec_txt_example_position: 321
+ source_specification: commonmark
+06_03__inlines__entity_and_numeric_character_references__02:
+ spec_txt_example_position: 322
+ source_specification: commonmark
+06_03__inlines__entity_and_numeric_character_references__03:
+ spec_txt_example_position: 323
+ source_specification: commonmark
+06_03__inlines__entity_and_numeric_character_references__04:
+ spec_txt_example_position: 324
+ source_specification: commonmark
+06_03__inlines__entity_and_numeric_character_references__05:
+ spec_txt_example_position: 325
+ source_specification: commonmark
+06_03__inlines__entity_and_numeric_character_references__06:
+ spec_txt_example_position: 326
+ source_specification: commonmark
+06_03__inlines__entity_and_numeric_character_references__07:
+ spec_txt_example_position: 327
+ source_specification: commonmark
+06_03__inlines__entity_and_numeric_character_references__08:
+ spec_txt_example_position: 328
+ source_specification: commonmark
+06_03__inlines__entity_and_numeric_character_references__09:
+ spec_txt_example_position: 329
+ source_specification: commonmark
+06_03__inlines__entity_and_numeric_character_references__10:
+ spec_txt_example_position: 330
+ source_specification: commonmark
+06_03__inlines__entity_and_numeric_character_references__11:
+ spec_txt_example_position: 331
+ source_specification: commonmark
+06_03__inlines__entity_and_numeric_character_references__12:
+ spec_txt_example_position: 332
+ source_specification: commonmark
+06_03__inlines__entity_and_numeric_character_references__13:
+ spec_txt_example_position: 333
+ source_specification: commonmark
+06_03__inlines__entity_and_numeric_character_references__14:
+ spec_txt_example_position: 334
+ source_specification: commonmark
+06_03__inlines__entity_and_numeric_character_references__15:
+ spec_txt_example_position: 335
+ source_specification: commonmark
+06_03__inlines__entity_and_numeric_character_references__16:
+ spec_txt_example_position: 336
+ source_specification: commonmark
+06_03__inlines__entity_and_numeric_character_references__17:
+ spec_txt_example_position: 337
+ source_specification: commonmark
+06_04__inlines__code_spans__01:
+ spec_txt_example_position: 338
+ source_specification: commonmark
+06_04__inlines__code_spans__02:
+ spec_txt_example_position: 339
+ source_specification: commonmark
+06_04__inlines__code_spans__03:
+ spec_txt_example_position: 340
+ source_specification: commonmark
+06_04__inlines__code_spans__04:
+ spec_txt_example_position: 341
+ source_specification: commonmark
+06_04__inlines__code_spans__05:
+ spec_txt_example_position: 342
+ source_specification: commonmark
+06_04__inlines__code_spans__06:
+ spec_txt_example_position: 343
+ source_specification: commonmark
+06_04__inlines__code_spans__07:
+ spec_txt_example_position: 344
+ source_specification: commonmark
+06_04__inlines__code_spans__08:
+ spec_txt_example_position: 345
+ source_specification: commonmark
+06_04__inlines__code_spans__09:
+ spec_txt_example_position: 346
+ source_specification: commonmark
+06_04__inlines__code_spans__10:
+ spec_txt_example_position: 347
+ source_specification: commonmark
+06_04__inlines__code_spans__11:
+ spec_txt_example_position: 348
+ source_specification: commonmark
+06_04__inlines__code_spans__12:
+ spec_txt_example_position: 349
+ source_specification: commonmark
+06_04__inlines__code_spans__13:
+ spec_txt_example_position: 350
+ source_specification: commonmark
+06_04__inlines__code_spans__14:
+ spec_txt_example_position: 351
+ source_specification: commonmark
+06_04__inlines__code_spans__15:
+ spec_txt_example_position: 352
+ source_specification: commonmark
+06_04__inlines__code_spans__16:
+ spec_txt_example_position: 353
+ source_specification: commonmark
+06_04__inlines__code_spans__17:
+ spec_txt_example_position: 354
+ source_specification: commonmark
+06_04__inlines__code_spans__18:
+ spec_txt_example_position: 355
+ source_specification: commonmark
+06_04__inlines__code_spans__19:
+ spec_txt_example_position: 356
+ source_specification: commonmark
+06_04__inlines__code_spans__20:
+ spec_txt_example_position: 357
+ source_specification: commonmark
+06_04__inlines__code_spans__21:
+ spec_txt_example_position: 358
+ source_specification: commonmark
+06_04__inlines__code_spans__22:
+ spec_txt_example_position: 359
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__01:
+ spec_txt_example_position: 360
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__02:
+ spec_txt_example_position: 361
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__03:
+ spec_txt_example_position: 362
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__04:
+ spec_txt_example_position: 363
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__05:
+ spec_txt_example_position: 364
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__06:
+ spec_txt_example_position: 365
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__07:
+ spec_txt_example_position: 366
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__08:
+ spec_txt_example_position: 367
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__09:
+ spec_txt_example_position: 368
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__10:
+ spec_txt_example_position: 369
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__11:
+ spec_txt_example_position: 370
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__12:
+ spec_txt_example_position: 371
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__13:
+ spec_txt_example_position: 372
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__14:
+ spec_txt_example_position: 373
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__15:
+ spec_txt_example_position: 374
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__16:
+ spec_txt_example_position: 375
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__17:
+ spec_txt_example_position: 376
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__18:
+ spec_txt_example_position: 377
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__19:
+ spec_txt_example_position: 378
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__20:
+ spec_txt_example_position: 379
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__21:
+ spec_txt_example_position: 380
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__22:
+ spec_txt_example_position: 381
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__23:
+ spec_txt_example_position: 382
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__24:
+ spec_txt_example_position: 383
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__25:
+ spec_txt_example_position: 384
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__26:
+ spec_txt_example_position: 385
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__27:
+ spec_txt_example_position: 386
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__28:
+ spec_txt_example_position: 387
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__29:
+ spec_txt_example_position: 388
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__30:
+ spec_txt_example_position: 389
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__31:
+ spec_txt_example_position: 390
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__32:
+ spec_txt_example_position: 391
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__33:
+ spec_txt_example_position: 392
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__34:
+ spec_txt_example_position: 393
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__35:
+ spec_txt_example_position: 394
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__36:
+ spec_txt_example_position: 395
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__37:
+ spec_txt_example_position: 396
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__38:
+ spec_txt_example_position: 397
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__39:
+ spec_txt_example_position: 398
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__40:
+ spec_txt_example_position: 399
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__41:
+ spec_txt_example_position: 400
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__42:
+ spec_txt_example_position: 401
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__43:
+ spec_txt_example_position: 402
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__44:
+ spec_txt_example_position: 403
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__45:
+ spec_txt_example_position: 404
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__46:
+ spec_txt_example_position: 405
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__47:
+ spec_txt_example_position: 406
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__48:
+ spec_txt_example_position: 407
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__49:
+ spec_txt_example_position: 408
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__50:
+ spec_txt_example_position: 409
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__51:
+ spec_txt_example_position: 410
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__52:
+ spec_txt_example_position: 411
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__53:
+ spec_txt_example_position: 412
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__54:
+ spec_txt_example_position: 413
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__55:
+ spec_txt_example_position: 414
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__56:
+ spec_txt_example_position: 415
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__57:
+ spec_txt_example_position: 416
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__58:
+ spec_txt_example_position: 417
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__59:
+ spec_txt_example_position: 418
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__60:
+ spec_txt_example_position: 419
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__61:
+ spec_txt_example_position: 420
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__62:
+ spec_txt_example_position: 421
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__63:
+ spec_txt_example_position: 422
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__64:
+ spec_txt_example_position: 423
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__65:
+ spec_txt_example_position: 424
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__66:
+ spec_txt_example_position: 425
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__67:
+ spec_txt_example_position: 426
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__68:
+ spec_txt_example_position: 427
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__69:
+ spec_txt_example_position: 428
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__70:
+ spec_txt_example_position: 429
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__71:
+ spec_txt_example_position: 430
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__72:
+ spec_txt_example_position: 431
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__73:
+ spec_txt_example_position: 432
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__74:
+ spec_txt_example_position: 433
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__75:
+ spec_txt_example_position: 434
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__76:
+ spec_txt_example_position: 435
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__77:
+ spec_txt_example_position: 436
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__78:
+ spec_txt_example_position: 437
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__79:
+ spec_txt_example_position: 438
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__80:
+ spec_txt_example_position: 439
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__81:
+ spec_txt_example_position: 440
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__82:
+ spec_txt_example_position: 441
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__83:
+ spec_txt_example_position: 442
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__84:
+ spec_txt_example_position: 443
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__85:
+ spec_txt_example_position: 444
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__86:
+ spec_txt_example_position: 445
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__87:
+ spec_txt_example_position: 446
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__88:
+ spec_txt_example_position: 447
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__89:
+ spec_txt_example_position: 448
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__90:
+ spec_txt_example_position: 449
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__91:
+ spec_txt_example_position: 450
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__92:
+ spec_txt_example_position: 451
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__93:
+ spec_txt_example_position: 452
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__94:
+ spec_txt_example_position: 453
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__95:
+ spec_txt_example_position: 454
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__96:
+ spec_txt_example_position: 455
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__97:
+ spec_txt_example_position: 456
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__98:
+ spec_txt_example_position: 457
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__99:
+ spec_txt_example_position: 458
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__100:
+ spec_txt_example_position: 459
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__101:
+ spec_txt_example_position: 460
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__102:
+ spec_txt_example_position: 461
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__103:
+ spec_txt_example_position: 462
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__104:
+ spec_txt_example_position: 463
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__105:
+ spec_txt_example_position: 464
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__106:
+ spec_txt_example_position: 465
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__107:
+ spec_txt_example_position: 466
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__108:
+ spec_txt_example_position: 467
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__109:
+ spec_txt_example_position: 468
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__110:
+ spec_txt_example_position: 469
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__111:
+ spec_txt_example_position: 470
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__112:
+ spec_txt_example_position: 471
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__113:
+ spec_txt_example_position: 472
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__114:
+ spec_txt_example_position: 473
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__115:
+ spec_txt_example_position: 474
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__116:
+ spec_txt_example_position: 475
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__117:
+ spec_txt_example_position: 476
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__118:
+ spec_txt_example_position: 477
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__119:
+ spec_txt_example_position: 478
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__120:
+ spec_txt_example_position: 479
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__121:
+ spec_txt_example_position: 480
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__122:
+ spec_txt_example_position: 481
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__123:
+ spec_txt_example_position: 482
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__124:
+ spec_txt_example_position: 483
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__125:
+ spec_txt_example_position: 484
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__126:
+ spec_txt_example_position: 485
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__127:
+ spec_txt_example_position: 486
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__128:
+ spec_txt_example_position: 487
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__129:
+ spec_txt_example_position: 488
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__130:
+ spec_txt_example_position: 489
+ source_specification: commonmark
+06_05__inlines__emphasis_and_strong_emphasis__131:
+ spec_txt_example_position: 490
+ source_specification: commonmark
+06_06__inlines__strikethrough_extension__01:
+ spec_txt_example_position: 491
+ source_specification: github
+06_06__inlines__strikethrough_extension__02:
+ spec_txt_example_position: 492
+ source_specification: github
+06_07__inlines__links__01:
+ spec_txt_example_position: 493
+ source_specification: commonmark
+06_07__inlines__links__02:
+ spec_txt_example_position: 494
+ source_specification: commonmark
+06_07__inlines__links__03:
+ spec_txt_example_position: 495
+ source_specification: commonmark
+06_07__inlines__links__04:
+ spec_txt_example_position: 496
+ source_specification: commonmark
+06_07__inlines__links__05:
+ spec_txt_example_position: 497
+ source_specification: commonmark
+06_07__inlines__links__06:
+ spec_txt_example_position: 498
+ source_specification: commonmark
+06_07__inlines__links__07:
+ spec_txt_example_position: 499
+ source_specification: commonmark
+06_07__inlines__links__08:
+ spec_txt_example_position: 500
+ source_specification: commonmark
+06_07__inlines__links__09:
+ spec_txt_example_position: 501
+ source_specification: commonmark
+06_07__inlines__links__10:
+ spec_txt_example_position: 502
+ source_specification: commonmark
+06_07__inlines__links__11:
+ spec_txt_example_position: 503
+ source_specification: commonmark
+06_07__inlines__links__12:
+ spec_txt_example_position: 504
+ source_specification: commonmark
+06_07__inlines__links__13:
+ spec_txt_example_position: 505
+ source_specification: commonmark
+06_07__inlines__links__14:
+ spec_txt_example_position: 506
+ source_specification: commonmark
+06_07__inlines__links__15:
+ spec_txt_example_position: 507
+ source_specification: commonmark
+06_07__inlines__links__16:
+ spec_txt_example_position: 508
+ source_specification: commonmark
+06_07__inlines__links__17:
+ spec_txt_example_position: 509
+ source_specification: commonmark
+06_07__inlines__links__18:
+ spec_txt_example_position: 510
+ source_specification: commonmark
+06_07__inlines__links__19:
+ spec_txt_example_position: 511
+ source_specification: commonmark
+06_07__inlines__links__20:
+ spec_txt_example_position: 512
+ source_specification: commonmark
+06_07__inlines__links__21:
+ spec_txt_example_position: 513
+ source_specification: commonmark
+06_07__inlines__links__22:
+ spec_txt_example_position: 514
+ source_specification: commonmark
+06_07__inlines__links__23:
+ spec_txt_example_position: 515
+ source_specification: commonmark
+06_07__inlines__links__24:
+ spec_txt_example_position: 516
+ source_specification: commonmark
+06_07__inlines__links__25:
+ spec_txt_example_position: 517
+ source_specification: commonmark
+06_07__inlines__links__26:
+ spec_txt_example_position: 518
+ source_specification: commonmark
+06_07__inlines__links__27:
+ spec_txt_example_position: 519
+ source_specification: commonmark
+06_07__inlines__links__28:
+ spec_txt_example_position: 520
+ source_specification: commonmark
+06_07__inlines__links__29:
+ spec_txt_example_position: 521
+ source_specification: commonmark
+06_07__inlines__links__30:
+ spec_txt_example_position: 522
+ source_specification: commonmark
+06_07__inlines__links__31:
+ spec_txt_example_position: 523
+ source_specification: commonmark
+06_07__inlines__links__32:
+ spec_txt_example_position: 524
+ source_specification: commonmark
+06_07__inlines__links__33:
+ spec_txt_example_position: 525
+ source_specification: commonmark
+06_07__inlines__links__34:
+ spec_txt_example_position: 526
+ source_specification: commonmark
+06_07__inlines__links__35:
+ spec_txt_example_position: 527
+ source_specification: commonmark
+06_07__inlines__links__36:
+ spec_txt_example_position: 528
+ source_specification: commonmark
+06_07__inlines__links__37:
+ spec_txt_example_position: 529
+ source_specification: commonmark
+06_07__inlines__links__38:
+ spec_txt_example_position: 530
+ source_specification: commonmark
+06_07__inlines__links__39:
+ spec_txt_example_position: 531
+ source_specification: commonmark
+06_07__inlines__links__40:
+ spec_txt_example_position: 532
+ source_specification: commonmark
+06_07__inlines__links__41:
+ spec_txt_example_position: 533
+ source_specification: commonmark
+06_07__inlines__links__42:
+ spec_txt_example_position: 534
+ source_specification: commonmark
+06_07__inlines__links__43:
+ spec_txt_example_position: 535
+ source_specification: commonmark
+06_07__inlines__links__44:
+ spec_txt_example_position: 536
+ source_specification: commonmark
+06_07__inlines__links__45:
+ spec_txt_example_position: 537
+ source_specification: commonmark
+06_07__inlines__links__46:
+ spec_txt_example_position: 538
+ source_specification: commonmark
+06_07__inlines__links__47:
+ spec_txt_example_position: 539
+ source_specification: commonmark
+06_07__inlines__links__48:
+ spec_txt_example_position: 540
+ source_specification: commonmark
+06_07__inlines__links__49:
+ spec_txt_example_position: 541
+ source_specification: commonmark
+06_07__inlines__links__50:
+ spec_txt_example_position: 542
+ source_specification: commonmark
+06_07__inlines__links__51:
+ spec_txt_example_position: 543
+ source_specification: commonmark
+06_07__inlines__links__52:
+ spec_txt_example_position: 544
+ source_specification: commonmark
+06_07__inlines__links__53:
+ spec_txt_example_position: 545
+ source_specification: commonmark
+06_07__inlines__links__54:
+ spec_txt_example_position: 546
+ source_specification: commonmark
+06_07__inlines__links__55:
+ spec_txt_example_position: 547
+ source_specification: commonmark
+06_07__inlines__links__56:
+ spec_txt_example_position: 548
+ source_specification: commonmark
+06_07__inlines__links__57:
+ spec_txt_example_position: 549
+ source_specification: commonmark
+06_07__inlines__links__58:
+ spec_txt_example_position: 550
+ source_specification: commonmark
+06_07__inlines__links__59:
+ spec_txt_example_position: 551
+ source_specification: commonmark
+06_07__inlines__links__60:
+ spec_txt_example_position: 552
+ source_specification: commonmark
+06_07__inlines__links__61:
+ spec_txt_example_position: 553
+ source_specification: commonmark
+06_07__inlines__links__62:
+ spec_txt_example_position: 554
+ source_specification: commonmark
+06_07__inlines__links__63:
+ spec_txt_example_position: 555
+ source_specification: commonmark
+06_07__inlines__links__64:
+ spec_txt_example_position: 556
+ source_specification: commonmark
+06_07__inlines__links__65:
+ spec_txt_example_position: 557
+ source_specification: commonmark
+06_07__inlines__links__66:
+ spec_txt_example_position: 558
+ source_specification: commonmark
+06_07__inlines__links__67:
+ spec_txt_example_position: 559
+ source_specification: commonmark
+06_07__inlines__links__68:
+ spec_txt_example_position: 560
+ source_specification: commonmark
+06_07__inlines__links__69:
+ spec_txt_example_position: 561
+ source_specification: commonmark
+06_07__inlines__links__70:
+ spec_txt_example_position: 562
+ source_specification: commonmark
+06_07__inlines__links__71:
+ spec_txt_example_position: 563
+ source_specification: commonmark
+06_07__inlines__links__72:
+ spec_txt_example_position: 564
+ source_specification: commonmark
+06_07__inlines__links__73:
+ spec_txt_example_position: 565
+ source_specification: commonmark
+06_07__inlines__links__74:
+ spec_txt_example_position: 566
+ source_specification: commonmark
+06_07__inlines__links__75:
+ spec_txt_example_position: 567
+ source_specification: commonmark
+06_07__inlines__links__76:
+ spec_txt_example_position: 568
+ source_specification: commonmark
+06_07__inlines__links__77:
+ spec_txt_example_position: 569
+ source_specification: commonmark
+06_07__inlines__links__78:
+ spec_txt_example_position: 570
+ source_specification: commonmark
+06_07__inlines__links__79:
+ spec_txt_example_position: 571
+ source_specification: commonmark
+06_07__inlines__links__80:
+ spec_txt_example_position: 572
+ source_specification: commonmark
+06_07__inlines__links__81:
+ spec_txt_example_position: 573
+ source_specification: commonmark
+06_07__inlines__links__82:
+ spec_txt_example_position: 574
+ source_specification: commonmark
+06_07__inlines__links__83:
+ spec_txt_example_position: 575
+ source_specification: commonmark
+06_07__inlines__links__84:
+ spec_txt_example_position: 576
+ source_specification: commonmark
+06_07__inlines__links__85:
+ spec_txt_example_position: 577
+ source_specification: commonmark
+06_07__inlines__links__86:
+ spec_txt_example_position: 578
+ source_specification: commonmark
+06_07__inlines__links__87:
+ spec_txt_example_position: 579
+ source_specification: commonmark
+06_08__inlines__images__01:
+ spec_txt_example_position: 580
+ source_specification: commonmark
+06_08__inlines__images__02:
+ spec_txt_example_position: 581
+ source_specification: commonmark
+06_08__inlines__images__03:
+ spec_txt_example_position: 582
+ source_specification: commonmark
+06_08__inlines__images__04:
+ spec_txt_example_position: 583
+ source_specification: commonmark
+06_08__inlines__images__05:
+ spec_txt_example_position: 584
+ source_specification: commonmark
+06_08__inlines__images__06:
+ spec_txt_example_position: 585
+ source_specification: commonmark
+06_08__inlines__images__07:
+ spec_txt_example_position: 586
+ source_specification: commonmark
+06_08__inlines__images__08:
+ spec_txt_example_position: 587
+ source_specification: commonmark
+06_08__inlines__images__09:
+ spec_txt_example_position: 588
+ source_specification: commonmark
+06_08__inlines__images__10:
+ spec_txt_example_position: 589
+ source_specification: commonmark
+06_08__inlines__images__11:
+ spec_txt_example_position: 590
+ source_specification: commonmark
+06_08__inlines__images__12:
+ spec_txt_example_position: 591
+ source_specification: commonmark
+06_08__inlines__images__13:
+ spec_txt_example_position: 592
+ source_specification: commonmark
+06_08__inlines__images__14:
+ spec_txt_example_position: 593
+ source_specification: commonmark
+06_08__inlines__images__15:
+ spec_txt_example_position: 594
+ source_specification: commonmark
+06_08__inlines__images__16:
+ spec_txt_example_position: 595
+ source_specification: commonmark
+06_08__inlines__images__17:
+ spec_txt_example_position: 596
+ source_specification: commonmark
+06_08__inlines__images__18:
+ spec_txt_example_position: 597
+ source_specification: commonmark
+06_08__inlines__images__19:
+ spec_txt_example_position: 598
+ source_specification: commonmark
+06_08__inlines__images__20:
+ spec_txt_example_position: 599
+ source_specification: commonmark
+06_08__inlines__images__21:
+ spec_txt_example_position: 600
+ source_specification: commonmark
+06_08__inlines__images__22:
+ spec_txt_example_position: 601
+ source_specification: commonmark
+06_09__inlines__autolinks__01:
+ spec_txt_example_position: 602
+ source_specification: commonmark
+06_09__inlines__autolinks__02:
+ spec_txt_example_position: 603
+ source_specification: commonmark
+06_09__inlines__autolinks__03:
+ spec_txt_example_position: 604
+ source_specification: commonmark
+06_09__inlines__autolinks__04:
+ spec_txt_example_position: 605
+ source_specification: commonmark
+06_09__inlines__autolinks__05:
+ spec_txt_example_position: 606
+ source_specification: commonmark
+06_09__inlines__autolinks__06:
+ spec_txt_example_position: 607
+ source_specification: commonmark
+06_09__inlines__autolinks__07:
+ spec_txt_example_position: 608
+ source_specification: commonmark
+06_09__inlines__autolinks__08:
+ spec_txt_example_position: 609
+ source_specification: commonmark
+06_09__inlines__autolinks__09:
+ spec_txt_example_position: 610
+ source_specification: commonmark
+06_09__inlines__autolinks__10:
+ spec_txt_example_position: 611
+ source_specification: commonmark
+06_09__inlines__autolinks__11:
+ spec_txt_example_position: 612
+ source_specification: commonmark
+06_09__inlines__autolinks__12:
+ spec_txt_example_position: 613
+ source_specification: commonmark
+06_09__inlines__autolinks__13:
+ spec_txt_example_position: 614
+ source_specification: commonmark
+06_09__inlines__autolinks__14:
+ spec_txt_example_position: 615
+ source_specification: commonmark
+06_09__inlines__autolinks__15:
+ spec_txt_example_position: 616
+ source_specification: commonmark
+06_09__inlines__autolinks__16:
+ spec_txt_example_position: 617
+ source_specification: commonmark
+06_09__inlines__autolinks__17:
+ spec_txt_example_position: 618
+ source_specification: commonmark
+06_09__inlines__autolinks__18:
+ spec_txt_example_position: 619
+ source_specification: commonmark
+06_09__inlines__autolinks__19:
+ spec_txt_example_position: 620
+ source_specification: commonmark
+06_10__inlines__autolinks_extension__01:
+ spec_txt_example_position: 621
+ source_specification: github
+06_10__inlines__autolinks_extension__02:
+ spec_txt_example_position: 622
+ source_specification: github
+06_10__inlines__autolinks_extension__03:
+ spec_txt_example_position: 623
+ source_specification: github
+06_10__inlines__autolinks_extension__04:
+ spec_txt_example_position: 624
+ source_specification: github
+06_10__inlines__autolinks_extension__05:
+ spec_txt_example_position: 625
+ source_specification: github
+06_10__inlines__autolinks_extension__06:
+ spec_txt_example_position: 626
+ source_specification: github
+06_10__inlines__autolinks_extension__07:
+ spec_txt_example_position: 627
+ source_specification: github
+06_10__inlines__autolinks_extension__08:
+ spec_txt_example_position: 628
+ source_specification: github
+06_10__inlines__autolinks_extension__09:
+ spec_txt_example_position: 629
+ source_specification: github
+06_10__inlines__autolinks_extension__10:
+ spec_txt_example_position: 630
+ source_specification: github
+06_10__inlines__autolinks_extension__11:
+ spec_txt_example_position: 631
+ source_specification: github
+06_11__inlines__raw_html__01:
+ spec_txt_example_position: 632
+ source_specification: commonmark
+06_11__inlines__raw_html__02:
+ spec_txt_example_position: 633
+ source_specification: commonmark
+06_11__inlines__raw_html__03:
+ spec_txt_example_position: 634
+ source_specification: commonmark
+06_11__inlines__raw_html__04:
+ spec_txt_example_position: 635
+ source_specification: commonmark
+06_11__inlines__raw_html__05:
+ spec_txt_example_position: 636
+ source_specification: commonmark
+06_11__inlines__raw_html__06:
+ spec_txt_example_position: 637
+ source_specification: commonmark
+06_11__inlines__raw_html__07:
+ spec_txt_example_position: 638
+ source_specification: commonmark
+06_11__inlines__raw_html__08:
+ spec_txt_example_position: 639
+ source_specification: commonmark
+06_11__inlines__raw_html__09:
+ spec_txt_example_position: 640
+ source_specification: commonmark
+06_11__inlines__raw_html__10:
+ spec_txt_example_position: 641
+ source_specification: commonmark
+06_11__inlines__raw_html__11:
+ spec_txt_example_position: 642
+ source_specification: commonmark
+06_11__inlines__raw_html__12:
+ spec_txt_example_position: 643
+ source_specification: commonmark
+06_11__inlines__raw_html__13:
+ spec_txt_example_position: 644
+ source_specification: commonmark
+06_11__inlines__raw_html__14:
+ spec_txt_example_position: 645
+ source_specification: commonmark
+06_11__inlines__raw_html__15:
+ spec_txt_example_position: 646
+ source_specification: commonmark
+06_11__inlines__raw_html__16:
+ spec_txt_example_position: 647
+ source_specification: commonmark
+06_11__inlines__raw_html__17:
+ spec_txt_example_position: 648
+ source_specification: commonmark
+06_11__inlines__raw_html__18:
+ spec_txt_example_position: 649
+ source_specification: commonmark
+06_11__inlines__raw_html__19:
+ spec_txt_example_position: 650
+ source_specification: commonmark
+06_11__inlines__raw_html__20:
+ spec_txt_example_position: 651
+ source_specification: commonmark
+06_11__inlines__raw_html__21:
+ spec_txt_example_position: 652
+ source_specification: commonmark
+06_12__inlines__disallowed_raw_html_extension__01:
+ spec_txt_example_position: 653
+ source_specification: github
+06_13__inlines__hard_line_breaks__01:
+ spec_txt_example_position: 654
+ source_specification: commonmark
+06_13__inlines__hard_line_breaks__02:
+ spec_txt_example_position: 655
+ source_specification: commonmark
+06_13__inlines__hard_line_breaks__03:
+ spec_txt_example_position: 656
+ source_specification: commonmark
+06_13__inlines__hard_line_breaks__04:
+ spec_txt_example_position: 657
+ source_specification: commonmark
+06_13__inlines__hard_line_breaks__05:
+ spec_txt_example_position: 658
+ source_specification: commonmark
+06_13__inlines__hard_line_breaks__06:
+ spec_txt_example_position: 659
+ source_specification: commonmark
+06_13__inlines__hard_line_breaks__07:
+ spec_txt_example_position: 660
+ source_specification: commonmark
+06_13__inlines__hard_line_breaks__08:
+ spec_txt_example_position: 661
+ source_specification: commonmark
+06_13__inlines__hard_line_breaks__09:
+ spec_txt_example_position: 662
+ source_specification: commonmark
+06_13__inlines__hard_line_breaks__10:
+ spec_txt_example_position: 663
+ source_specification: commonmark
+06_13__inlines__hard_line_breaks__11:
+ spec_txt_example_position: 664
+ source_specification: commonmark
+06_13__inlines__hard_line_breaks__12:
+ spec_txt_example_position: 665
+ source_specification: commonmark
+06_13__inlines__hard_line_breaks__13:
+ spec_txt_example_position: 666
+ source_specification: commonmark
+06_13__inlines__hard_line_breaks__14:
+ spec_txt_example_position: 667
+ source_specification: commonmark
+06_13__inlines__hard_line_breaks__15:
+ spec_txt_example_position: 668
+ source_specification: commonmark
+06_14__inlines__soft_line_breaks__01:
+ spec_txt_example_position: 669
+ source_specification: commonmark
+06_14__inlines__soft_line_breaks__02:
+ spec_txt_example_position: 670
+ source_specification: commonmark
+06_15__inlines__textual_content__01:
+ spec_txt_example_position: 671
+ source_specification: commonmark
+06_15__inlines__textual_content__02:
+ spec_txt_example_position: 672
+ source_specification: commonmark
+06_15__inlines__textual_content__03:
+ spec_txt_example_position: 673
+ source_specification: commonmark
+07_01__first_gitlab_specific_section_with_examples__strong_but_with_two_asterisks__01:
+ spec_txt_example_position: 674
+ source_specification: commonmark
+08_01__second_gitlab_specific_section_with_examples__strong_but_with_html__01:
+ spec_txt_example_position: 675
+ source_specification: commonmark
diff --git a/spec/fixtures/glfm/example_snapshots/html.yml b/spec/fixtures/glfm/example_snapshots/html.yml
new file mode 100644
index 00000000000..a536b5a4834
--- /dev/null
+++ b/spec/fixtures/glfm/example_snapshots/html.yml
@@ -0,0 +1,6097 @@
+---
+02_01__preliminaries__tabs__01:
+ canonical: "<pre><code>foo\tbaz\t\tbim\n</code></pre>\n"
+ static: "<div class=\"gl-relative markdown-code-block js-markdown-code\">&#x000A;<pre
+ data-sourcepos=\"1:2-1:13\" class=\"code highlight js-syntax-highlight language-plaintext\"
+ lang=\"plaintext\" v-pre=\"true\"><code><span id=\"LC1\" class=\"line\" lang=\"plaintext\">foo\tbaz\t\tbim</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>"
+ wysiwyg: "<pre class=\"content-editor-code-block undefined code highlight\"><code>foo\tbaz\t\tbim</code></pre>"
+02_01__preliminaries__tabs__02:
+ canonical: "<pre><code>foo\tbaz\t\tbim\n</code></pre>\n"
+ static: "<div class=\"gl-relative markdown-code-block js-markdown-code\">&#x000A;<pre
+ data-sourcepos=\"1:4-1:15\" class=\"code highlight js-syntax-highlight language-plaintext\"
+ lang=\"plaintext\" v-pre=\"true\"><code><span id=\"LC1\" class=\"line\" lang=\"plaintext\">foo\tbaz\t\tbim</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>"
+ wysiwyg: "<pre class=\"content-editor-code-block undefined code highlight\"><code>foo\tbaz\t\tbim</code></pre>"
+02_01__preliminaries__tabs__03:
+ canonical: "<pre><code>a\ta\nὐ\ta\n</code></pre>\n"
+ static: "<div class=\"gl-relative markdown-code-block js-markdown-code\">&#x000A;<pre
+ data-sourcepos=\"1:5-2:9\" class=\"code highlight js-syntax-highlight language-plaintext\"
+ lang=\"plaintext\" v-pre=\"true\"><code><span id=\"LC1\" class=\"line\" lang=\"plaintext\">a\ta</span>&#x000A;<span
+ id=\"LC2\" class=\"line\" lang=\"plaintext\">ὐ\ta</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>"
+ wysiwyg: "<pre class=\"content-editor-code-block undefined code highlight\"><code>a\ta\nὐ\ta</code></pre>"
+02_01__preliminaries__tabs__04:
+ canonical: |
+ <ul>
+ <li>
+ <p>foo</p>
+ <p>bar</p>
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:3-3:4" dir="auto">&#x000A;<li data-sourcepos="1:3-3:4">&#x000A;<p data-sourcepos="1:5-1:7">foo</p>&#x000A;<p data-sourcepos="3:2-3:4">bar</p>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>foo</p><p>bar</p></li></ul>
+02_01__preliminaries__tabs__05:
+ canonical: |
+ <ul>
+ <li>
+ <p>foo</p>
+ <pre><code> bar
+ </code></pre>
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-3:5" dir="auto">&#x000A;<li data-sourcepos="1:1-3:5">&#x000A;<p data-sourcepos="1:3-1:5">foo</p>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="3:2-3:5" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext"> bar</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>foo</p><pre class="content-editor-code-block undefined code highlight"><code> bar</code></pre></li></ul>
+02_01__preliminaries__tabs__06:
+ canonical: |
+ <blockquote>
+ <pre><code> foo
+ </code></pre>
+ </blockquote>
+ static: |-
+ <blockquote data-sourcepos="1:1-1:6" dir="auto">&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:3-1:6" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext"> foo</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;</blockquote>
+ wysiwyg: |-
+ <blockquote multiline="false"><pre class="content-editor-code-block undefined code highlight"><code> foo</code></pre></blockquote>
+02_01__preliminaries__tabs__07:
+ canonical: |
+ <ul>
+ <li>
+ <pre><code> foo
+ </code></pre>
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-1:6" dir="auto">&#x000A;<li data-sourcepos="1:1-1:6">&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:3-1:6" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext"> foo</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p></p><pre class="content-editor-code-block undefined code highlight"><code> foo</code></pre></li></ul>
+02_01__preliminaries__tabs__08:
+ canonical: |
+ <pre><code>foo
+ bar
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:5-2:4" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo</span>&#x000A;<span id="LC2" class="line" lang="plaintext">bar</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>foo
+ bar</code></pre>
+02_01__preliminaries__tabs__09:
+ canonical: |
+ <ul>
+ <li>foo
+ <ul>
+ <li>bar
+ <ul>
+ <li>baz</li>
+ </ul>
+ </li>
+ </ul>
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:2-3:7" dir="auto">&#x000A;<li data-sourcepos="1:2-3:7">foo&#x000A;<ul data-sourcepos="2:4-3:7">&#x000A;<li data-sourcepos="2:4-3:7">bar&#x000A;<ul data-sourcepos="3:3-3:7">&#x000A;<li data-sourcepos="3:3-3:7">baz</li>&#x000A;</ul>&#x000A;</li>&#x000A;</ul>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>foo
+ </p><ul bullet="*"><li><p>bar
+ </p><ul bullet="*"><li><p>baz</p></li></ul></li></ul></li></ul>
+02_01__preliminaries__tabs__10:
+ canonical: |
+ <h1>Foo</h1>
+ static: |-
+ <h1 data-sourcepos="1:1-1:5" dir="auto">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>Foo</h1>
+ wysiwyg: |-
+ <h1>Foo</h1>
+02_01__preliminaries__tabs__11:
+ canonical: |
+ <hr />
+ static: |-
+ <hr data-sourcepos="1:1-1:6">
+ wysiwyg: |-
+ <hr>
+03_01__blocks_and_inlines__precedence__01:
+ canonical: |
+ <ul>
+ <li>`one</li>
+ <li>two`</li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-2:6" dir="auto">&#x000A;<li data-sourcepos="1:1-1:6">`one</li>&#x000A;<li data-sourcepos="2:1-2:6">two`</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>`one</p></li><li><p>two`</p></li></ul>
+04_01__leaf_blocks__thematic_breaks__01:
+ canonical: |
+ <hr />
+ <hr />
+ <hr />
+ static: |-
+ <hr data-sourcepos="1:1-1:3">&#x000A;<hr data-sourcepos="2:1-2:3">&#x000A;<hr data-sourcepos="3:1-3:3">
+ wysiwyg: |-
+ <hr>
+04_01__leaf_blocks__thematic_breaks__02:
+ canonical: |
+ <p>+++</p>
+ static: |-
+ <p data-sourcepos="1:1-1:3" dir="auto">+++</p>
+ wysiwyg: |-
+ <p>+++</p>
+04_01__leaf_blocks__thematic_breaks__03:
+ canonical: |
+ <p>===</p>
+ static: |-
+ <p data-sourcepos="1:1-1:3" dir="auto">===</p>
+ wysiwyg: |-
+ <p>===</p>
+04_01__leaf_blocks__thematic_breaks__04:
+ canonical: |
+ <p>--
+ **
+ __</p>
+ static: |-
+ <p data-sourcepos="1:1-3:2" dir="auto">--&#x000A;**&#x000A;__</p>
+ wysiwyg: |-
+ <p>--
+ **
+ __</p>
+04_01__leaf_blocks__thematic_breaks__05:
+ canonical: |
+ <hr />
+ <hr />
+ <hr />
+ static: |-
+ <hr data-sourcepos="1:2-1:4">&#x000A;<hr data-sourcepos="2:3-2:5">&#x000A;<hr data-sourcepos="3:4-3:6">
+ wysiwyg: |-
+ <hr>
+04_01__leaf_blocks__thematic_breaks__06:
+ canonical: |
+ <pre><code>***
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:5-1:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">***</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>***</code></pre>
+04_01__leaf_blocks__thematic_breaks__07:
+ canonical: |
+ <p>Foo
+ ***</p>
+ static: |-
+ <p data-sourcepos="1:1-2:7" dir="auto">Foo&#x000A;***</p>
+ wysiwyg: |-
+ <p>Foo
+ ***</p>
+04_01__leaf_blocks__thematic_breaks__08:
+ canonical: |
+ <hr />
+ static: |-
+ <hr data-sourcepos="1:1-1:37">
+ wysiwyg: |-
+ <hr>
+04_01__leaf_blocks__thematic_breaks__09:
+ canonical: |
+ <hr />
+ static: |-
+ <hr data-sourcepos="1:2-1:6">
+ wysiwyg: |-
+ <hr>
+04_01__leaf_blocks__thematic_breaks__10:
+ canonical: |
+ <hr />
+ static: |-
+ <hr data-sourcepos="1:2-1:19">
+ wysiwyg: |-
+ <hr>
+04_01__leaf_blocks__thematic_breaks__11:
+ canonical: |
+ <hr />
+ static: |-
+ <hr data-sourcepos="1:1-1:21">
+ wysiwyg: |-
+ <hr>
+04_01__leaf_blocks__thematic_breaks__12:
+ canonical: |
+ <hr />
+ static: |-
+ <hr data-sourcepos="1:1-1:11">
+ wysiwyg: |-
+ <hr>
+04_01__leaf_blocks__thematic_breaks__13:
+ canonical: |
+ <p>_ _ _ _ a</p>
+ <p>a------</p>
+ <p>---a---</p>
+ static: |-
+ <p data-sourcepos="1:1-1:9" dir="auto">_ _ _ _ a</p>&#x000A;<p data-sourcepos="3:1-3:7" dir="auto">a------</p>&#x000A;<p data-sourcepos="5:1-5:7" dir="auto">---a---</p>
+ wysiwyg: |-
+ <p>_ _ _ _ a</p>
+04_01__leaf_blocks__thematic_breaks__14:
+ canonical: |
+ <p><em>-</em></p>
+ static: |-
+ <p data-sourcepos="1:2-1:4" dir="auto"><em>-</em></p>
+ wysiwyg: |-
+ <p><em>-</em></p>
+04_01__leaf_blocks__thematic_breaks__15:
+ canonical: |
+ <ul>
+ <li>foo</li>
+ </ul>
+ <hr />
+ <ul>
+ <li>bar</li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-1:5" dir="auto">&#x000A;<li data-sourcepos="1:1-1:5">foo</li>&#x000A;</ul>&#x000A;<hr data-sourcepos="2:1-2:3">&#x000A;<ul data-sourcepos="3:1-3:5" dir="auto">&#x000A;<li data-sourcepos="3:1-3:5">bar</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>foo</p></li></ul>
+04_01__leaf_blocks__thematic_breaks__16:
+ canonical: |
+ <p>Foo</p>
+ <hr />
+ <p>bar</p>
+ static: |-
+ <p data-sourcepos="1:1-1:3" dir="auto">Foo</p>&#x000A;<hr data-sourcepos="2:1-2:3">&#x000A;<p data-sourcepos="3:1-3:3" dir="auto">bar</p>
+ wysiwyg: |-
+ <p>Foo</p>
+04_01__leaf_blocks__thematic_breaks__17:
+ canonical: |
+ <h2>Foo</h2>
+ <p>bar</p>
+ static: |-
+ <h2 data-sourcepos="1:1-3:3" dir="auto">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>Foo</h2>&#x000A;<p data-sourcepos="3:1-3:3" dir="auto">bar</p>
+ wysiwyg: |-
+ <h2>Foo</h2>
+04_01__leaf_blocks__thematic_breaks__18:
+ canonical: |
+ <ul>
+ <li>Foo</li>
+ </ul>
+ <hr />
+ <ul>
+ <li>Bar</li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-1:5" dir="auto">&#x000A;<li data-sourcepos="1:1-1:5">Foo</li>&#x000A;</ul>&#x000A;<hr data-sourcepos="2:1-2:5">&#x000A;<ul data-sourcepos="3:1-3:5" dir="auto">&#x000A;<li data-sourcepos="3:1-3:5">Bar</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>Foo</p></li></ul>
+04_01__leaf_blocks__thematic_breaks__19:
+ canonical: |
+ <ul>
+ <li>Foo</li>
+ <li>
+ <hr />
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-2:7" dir="auto">&#x000A;<li data-sourcepos="1:1-1:5">Foo</li>&#x000A;<li data-sourcepos="2:1-2:7">&#x000A;<hr data-sourcepos="2:3-2:7">&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>Foo</p></li><li><p></p><hr></li></ul>
+04_02__leaf_blocks__atx_headings__01:
+ canonical: |
+ <h1>foo</h1>
+ <h2>foo</h2>
+ <h3>foo</h3>
+ <h4>foo</h4>
+ <h5>foo</h5>
+ <h6>foo</h6>
+ static: |-
+ <h1 data-sourcepos="1:1-1:5" dir="auto">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>foo</h1>&#x000A;<h2 data-sourcepos="2:1-2:6" dir="auto">&#x000A;<a id="user-content-foo-1" class="anchor" href="#foo-1" aria-hidden="true"></a>foo</h2>&#x000A;<h3 data-sourcepos="3:1-3:7" dir="auto">&#x000A;<a id="user-content-foo-2" class="anchor" href="#foo-2" aria-hidden="true"></a>foo</h3>&#x000A;<h4 data-sourcepos="4:1-4:8" dir="auto">&#x000A;<a id="user-content-foo-3" class="anchor" href="#foo-3" aria-hidden="true"></a>foo</h4>&#x000A;<h5 data-sourcepos="5:1-5:9" dir="auto">&#x000A;<a id="user-content-foo-4" class="anchor" href="#foo-4" aria-hidden="true"></a>foo</h5>&#x000A;<h6 data-sourcepos="6:1-6:10" dir="auto">&#x000A;<a id="user-content-foo-5" class="anchor" href="#foo-5" aria-hidden="true"></a>foo</h6>
+ wysiwyg: |-
+ <h1>foo</h1>
+04_02__leaf_blocks__atx_headings__02:
+ canonical: |
+ <p>####### foo</p>
+ static: |-
+ <p data-sourcepos="1:1-1:11" dir="auto">####### foo</p>
+ wysiwyg: |-
+ <p>####### foo</p>
+04_02__leaf_blocks__atx_headings__03:
+ canonical: |
+ <p>#5 bolt</p>
+ <p>#hashtag</p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto">#5 bolt</p>&#x000A;<p data-sourcepos="3:1-3:8" dir="auto">#hashtag</p>
+ wysiwyg: |-
+ <p>#5 bolt</p>
+04_02__leaf_blocks__atx_headings__04:
+ canonical: |
+ <p>## foo</p>
+ static: |-
+ <p data-sourcepos="1:1-1:27" dir="auto"><span>#</span># foo</p>
+ wysiwyg: |-
+ <p>## foo</p>
+04_02__leaf_blocks__atx_headings__05:
+ canonical: |
+ <h1>foo <em>bar</em> *baz*</h1>
+ static: |-
+ <h1 data-sourcepos="1:1-1:19" dir="auto">&#x000A;<a id="user-content-foo-bar-baz" class="anchor" href="#foo-bar-baz" aria-hidden="true"></a>foo <em>bar</em> *baz*</h1>
+ wysiwyg: |-
+ <h1>foo <em>bar</em> *baz*</h1>
+04_02__leaf_blocks__atx_headings__06:
+ canonical: |
+ <h1>foo</h1>
+ static: |-
+ <h1 data-sourcepos="1:1-1:22" dir="auto">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>foo</h1>
+ wysiwyg: |-
+ <h1>foo</h1>
+04_02__leaf_blocks__atx_headings__07:
+ canonical: |
+ <h3>foo</h3>
+ <h2>foo</h2>
+ <h1>foo</h1>
+ static: |-
+ <h3 data-sourcepos="1:2-1:8" dir="auto">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>foo</h3>&#x000A;<h2 data-sourcepos="2:3-2:8" dir="auto">&#x000A;<a id="user-content-foo-1" class="anchor" href="#foo-1" aria-hidden="true"></a>foo</h2>&#x000A;<h1 data-sourcepos="3:4-3:8" dir="auto">&#x000A;<a id="user-content-foo-2" class="anchor" href="#foo-2" aria-hidden="true"></a>foo</h1>
+ wysiwyg: |-
+ <h3>foo</h3>
+04_02__leaf_blocks__atx_headings__08:
+ canonical: |
+ <pre><code># foo
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:5-1:9" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext"># foo</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code># foo</code></pre>
+04_02__leaf_blocks__atx_headings__09:
+ canonical: |
+ <p>foo
+ # bar</p>
+ static: |-
+ <p data-sourcepos="1:1-2:9" dir="auto">foo&#x000A;# bar</p>
+ wysiwyg: |-
+ <p>foo
+ # bar</p>
+04_02__leaf_blocks__atx_headings__10:
+ canonical: |
+ <h2>foo</h2>
+ <h3>bar</h3>
+ static: |-
+ <h2 data-sourcepos="1:1-1:6" dir="auto">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>foo</h2>&#x000A;<h3 data-sourcepos="2:3-2:11" dir="auto">&#x000A;<a id="user-content-bar" class="anchor" href="#bar" aria-hidden="true"></a>bar</h3>
+ wysiwyg: |-
+ <h2>foo</h2>
+04_02__leaf_blocks__atx_headings__11:
+ canonical: |
+ <h1>foo</h1>
+ <h5>foo</h5>
+ static: |-
+ <h1 data-sourcepos="1:1-1:5" dir="auto">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>foo</h1>&#x000A;<h5 data-sourcepos="2:1-2:9" dir="auto">&#x000A;<a id="user-content-foo-1" class="anchor" href="#foo-1" aria-hidden="true"></a>foo</h5>
+ wysiwyg: |-
+ <h1>foo</h1>
+04_02__leaf_blocks__atx_headings__12:
+ canonical: |
+ <h3>foo</h3>
+ static: |-
+ <h3 data-sourcepos="1:1-1:7" dir="auto">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>foo</h3>
+ wysiwyg: |-
+ <h3>foo</h3>
+04_02__leaf_blocks__atx_headings__13:
+ canonical: |
+ <h3>foo ### b</h3>
+ static: |-
+ <h3 data-sourcepos="1:1-1:13" dir="auto">&#x000A;<a id="user-content-foo-b" class="anchor" href="#foo-b" aria-hidden="true"></a>foo ### b</h3>
+ wysiwyg: |-
+ <h3>foo ### b</h3>
+04_02__leaf_blocks__atx_headings__14:
+ canonical: |
+ <h1>foo#</h1>
+ static: |-
+ <h1 data-sourcepos="1:1-1:6" dir="auto">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>foo#</h1>
+ wysiwyg: |-
+ <h1>foo#</h1>
+04_02__leaf_blocks__atx_headings__15:
+ canonical: |
+ <h3>foo ###</h3>
+ <h2>foo ###</h2>
+ <h1>foo #</h1>
+ static: |-
+ <h3 data-sourcepos="1:1-1:32" dir="auto">&#x000A;<a id="user-content-foo-" class="anchor" href="#foo-" aria-hidden="true"></a>foo <span>#</span>##</h3>&#x000A;<h2 data-sourcepos="2:1-2:31" dir="auto">&#x000A;<a id="user-content-foo--1" class="anchor" href="#foo--1" aria-hidden="true"></a>foo #<span>#</span>#</h2>&#x000A;<h1 data-sourcepos="3:1-3:28" dir="auto">&#x000A;<a id="user-content-foo--2" class="anchor" href="#foo--2" aria-hidden="true"></a>foo <span>#</span>&#x000A;</h1>
+ wysiwyg: |-
+ <h3>foo ###</h3>
+04_02__leaf_blocks__atx_headings__16:
+ canonical: |
+ <hr />
+ <h2>foo</h2>
+ <hr />
+ static: |-
+ <hr data-sourcepos="1:1-1:4">&#x000A;<h2 data-sourcepos="2:1-2:6" dir="auto">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>foo</h2>&#x000A;<hr data-sourcepos="3:1-3:4">
+ wysiwyg: |-
+ <hr>
+04_02__leaf_blocks__atx_headings__17:
+ canonical: |
+ <p>Foo bar</p>
+ <h1>baz</h1>
+ <p>Bar foo</p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto">Foo bar</p>&#x000A;<h1 data-sourcepos="2:1-2:5" dir="auto">&#x000A;<a id="user-content-baz" class="anchor" href="#baz" aria-hidden="true"></a>baz</h1>&#x000A;<p data-sourcepos="3:1-3:7" dir="auto">Bar foo</p>
+ wysiwyg: |-
+ <p>Foo bar</p>
+04_02__leaf_blocks__atx_headings__18:
+ canonical: |
+ <h2></h2>
+ <h1></h1>
+ <h3></h3>
+ static: |-
+ <h2 data-sourcepos="1:1-1:3" dir="auto"></h2>&#x000A;<h1 data-sourcepos="2:1-2:1" dir="auto"></h1>&#x000A;<h3 data-sourcepos="3:1-3:3" dir="auto"></h3>
+ wysiwyg: |-
+ <h2></h2>
+04_03__leaf_blocks__setext_headings__01:
+ canonical: |
+ <h1>Foo <em>bar</em></h1>
+ <h2>Foo <em>bar</em></h2>
+ static: |-
+ <h1 data-sourcepos="1:1-3:0" dir="auto">&#x000A;<a id="user-content-foo-bar" class="anchor" href="#foo-bar" aria-hidden="true"></a>Foo <em>bar</em>&#x000A;</h1>&#x000A;<h2 data-sourcepos="4:1-5:9" dir="auto">&#x000A;<a id="user-content-foo-bar-1" class="anchor" href="#foo-bar-1" aria-hidden="true"></a>Foo <em>bar</em>&#x000A;</h2>
+ wysiwyg: |-
+ <h1>Foo <em>bar</em></h1>
+04_03__leaf_blocks__setext_headings__02:
+ canonical: |
+ <h1>Foo <em>bar
+ baz</em></h1>
+ static: |-
+ <h1 data-sourcepos="1:1-3:4" dir="auto">&#x000A;<a id="user-content-foo-barbaz" class="anchor" href="#foo-barbaz" aria-hidden="true"></a>Foo <em>bar&#x000A;baz</em>&#x000A;</h1>
+ wysiwyg: |-
+ <h1>Foo <em>bar
+ baz</em></h1>
+04_03__leaf_blocks__setext_headings__03:
+ canonical: |
+ <h1>Foo <em>bar
+ baz</em></h1>
+ static: |-
+ <h1 data-sourcepos="1:3-3:4" dir="auto">&#x000A;<a id="user-content-foo-barbaz" class="anchor" href="#foo-barbaz" aria-hidden="true"></a>Foo <em>bar&#x000A;baz</em>&#x000A;</h1>
+ wysiwyg: |-
+ <h1>Foo <em>bar
+ baz</em></h1>
+04_03__leaf_blocks__setext_headings__04:
+ canonical: |
+ <h2>Foo</h2>
+ <h1>Foo</h1>
+ static: |-
+ <h2 data-sourcepos="1:1-3:0" dir="auto">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>Foo</h2>&#x000A;<h1 data-sourcepos="4:1-5:1" dir="auto">&#x000A;<a id="user-content-foo-1" class="anchor" href="#foo-1" aria-hidden="true"></a>Foo</h1>
+ wysiwyg: |-
+ <h2>Foo</h2>
+04_03__leaf_blocks__setext_headings__05:
+ canonical: |
+ <h2>Foo</h2>
+ <h2>Foo</h2>
+ <h1>Foo</h1>
+ static: |-
+ <h2 data-sourcepos="1:4-3:0" dir="auto">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>Foo</h2>&#x000A;<h2 data-sourcepos="4:3-6:0" dir="auto">&#x000A;<a id="user-content-foo-1" class="anchor" href="#foo-1" aria-hidden="true"></a>Foo</h2>&#x000A;<h1 data-sourcepos="7:3-8:5" dir="auto">&#x000A;<a id="user-content-foo-2" class="anchor" href="#foo-2" aria-hidden="true"></a>Foo</h1>
+ wysiwyg: |-
+ <h2>Foo</h2>
+04_03__leaf_blocks__setext_headings__06:
+ canonical: |
+ <pre><code>Foo
+ ---
+
+ Foo
+ </code></pre>
+ <hr />
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:5-4:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">Foo</span>&#x000A;<span id="LC2" class="line" lang="plaintext">---</span>&#x000A;<span id="LC3" class="line" lang="plaintext"></span>&#x000A;<span id="LC4" class="line" lang="plaintext">Foo</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;<hr data-sourcepos="5:1-5:3">
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>Foo
+ ---
+
+ Foo</code></pre>
+04_03__leaf_blocks__setext_headings__07:
+ canonical: |
+ <h2>Foo</h2>
+ static: |-
+ <h2 data-sourcepos="1:1-2:13" dir="auto">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>Foo</h2>
+ wysiwyg: |-
+ <h2>Foo</h2>
+04_03__leaf_blocks__setext_headings__08:
+ canonical: |
+ <p>Foo
+ ---</p>
+ static: |-
+ <p data-sourcepos="1:1-2:7" dir="auto">Foo&#x000A;---</p>
+ wysiwyg: |-
+ <p>Foo
+ ---</p>
+04_03__leaf_blocks__setext_headings__09:
+ canonical: |
+ <p>Foo
+ = =</p>
+ <p>Foo</p>
+ <hr />
+ static: |-
+ <p data-sourcepos="1:1-2:3" dir="auto">Foo&#x000A;= =</p>&#x000A;<p data-sourcepos="4:1-4:3" dir="auto">Foo</p>&#x000A;<hr data-sourcepos="5:1-5:5">
+ wysiwyg: |-
+ <p>Foo
+ = =</p>
+04_03__leaf_blocks__setext_headings__10:
+ canonical: |
+ <h2>Foo</h2>
+ static: |-
+ <h2 data-sourcepos="1:1-2:5" dir="auto">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>Foo</h2>
+ wysiwyg: |-
+ <h2>Foo</h2>
+04_03__leaf_blocks__setext_headings__11:
+ canonical: |
+ <h2>Foo\</h2>
+ static: |-
+ <h2 data-sourcepos="1:1-2:4" dir="auto">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>Foo\</h2>
+ wysiwyg: |-
+ <h2>Foo\</h2>
+04_03__leaf_blocks__setext_headings__12:
+ canonical: |
+ <h2>`Foo</h2>
+ <p>`</p>
+ <h2>&lt;a title=&quot;a lot</h2>
+ <p>of dashes&quot;/&gt;</p>
+ static: |-
+ <h2 data-sourcepos="1:1-3:1" dir="auto">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>`Foo</h2>&#x000A;<p data-sourcepos="3:1-3:1" dir="auto">`</p>&#x000A;<h2 data-sourcepos="5:1-7:12" dir="auto">&#x000A;<a id="user-content-a-titlea-lot" class="anchor" href="#a-titlea-lot" aria-hidden="true"></a>&lt;a title="a lot</h2>&#x000A;<p data-sourcepos="7:1-7:12" dir="auto">of dashes"/&gt;</p>
+ wysiwyg: |-
+ <h2>`Foo</h2>
+04_03__leaf_blocks__setext_headings__13:
+ canonical: |
+ <blockquote>
+ <p>Foo</p>
+ </blockquote>
+ <hr />
+ static: |-
+ <blockquote data-sourcepos="1:1-1:5" dir="auto">&#x000A;<p data-sourcepos="1:3-1:5">Foo</p>&#x000A;</blockquote>&#x000A;<hr data-sourcepos="2:1-2:3">
+ wysiwyg: |-
+ <blockquote multiline="false"><p>Foo</p></blockquote>
+04_03__leaf_blocks__setext_headings__14:
+ canonical: |
+ <blockquote>
+ <p>foo
+ bar
+ ===</p>
+ </blockquote>
+ static: |-
+ <blockquote data-sourcepos="1:1-3:3" dir="auto">&#x000A;<p data-sourcepos="1:3-3:3">foo&#x000A;bar&#x000A;===</p>&#x000A;</blockquote>
+ wysiwyg: |-
+ <blockquote multiline="false"><p>foo
+ bar
+ ===</p></blockquote>
+04_03__leaf_blocks__setext_headings__15:
+ canonical: |
+ <ul>
+ <li>Foo</li>
+ </ul>
+ <hr />
+ static: |-
+ <ul data-sourcepos="1:1-1:5" dir="auto">&#x000A;<li data-sourcepos="1:1-1:5">Foo</li>&#x000A;</ul>&#x000A;<hr data-sourcepos="2:1-2:3">
+ wysiwyg: |-
+ <ul bullet="*"><li><p>Foo</p></li></ul>
+04_03__leaf_blocks__setext_headings__16:
+ canonical: |
+ <h2>Foo
+ Bar</h2>
+ static: |-
+ <h2 data-sourcepos="1:1-3:3" dir="auto">&#x000A;<a id="user-content-foobar" class="anchor" href="#foobar" aria-hidden="true"></a>Foo&#x000A;Bar</h2>
+ wysiwyg: |-
+ <h2>Foo
+ Bar</h2>
+04_03__leaf_blocks__setext_headings__17:
+ canonical: |
+ <hr />
+ <h2>Foo</h2>
+ <h2>Bar</h2>
+ <p>Baz</p>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-3:3" class="code highlight js-syntax-highlight language-yaml" lang="yaml" data-lang-params="frontmatter" v-pre="true"><code><span id="LC1" class="line" lang="yaml"><span class="s">Foo</span></span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;<h2 data-sourcepos="4:1-6:3" dir="auto">&#x000A;<a id="user-content-bar" class="anchor" href="#bar" aria-hidden="true"></a>Bar</h2>&#x000A;<p data-sourcepos="6:1-6:3" dir="auto">Baz</p>
+ wysiwyg: |-
+ <hr>
+04_03__leaf_blocks__setext_headings__18:
+ canonical: |
+ <p>====</p>
+ static: |-
+ <p data-sourcepos="2:1-2:4" dir="auto">====</p>
+ wysiwyg: |-
+ <p>====</p>
+04_03__leaf_blocks__setext_headings__19:
+ canonical: |
+ <hr />
+ <hr />
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-2:3" class="code highlight js-syntax-highlight language-yaml" lang="yaml" data-lang-params="frontmatter" v-pre="true"><code></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <hr>
+04_03__leaf_blocks__setext_headings__20:
+ canonical: |
+ <ul>
+ <li>foo</li>
+ </ul>
+ <hr />
+ static: |-
+ <ul data-sourcepos="1:1-1:5" dir="auto">&#x000A;<li data-sourcepos="1:1-1:5">foo</li>&#x000A;</ul>&#x000A;<hr data-sourcepos="2:1-2:5">
+ wysiwyg: |-
+ <ul bullet="*"><li><p>foo</p></li></ul>
+04_03__leaf_blocks__setext_headings__21:
+ canonical: |
+ <pre><code>foo
+ </code></pre>
+ <hr />
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:5-1:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;<hr data-sourcepos="2:1-2:3">
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>foo</code></pre>
+04_03__leaf_blocks__setext_headings__22:
+ canonical: |
+ <blockquote>
+ <p>foo</p>
+ </blockquote>
+ <hr />
+ static: |-
+ <blockquote data-sourcepos="1:1-1:5" dir="auto">&#x000A;<p data-sourcepos="1:3-1:5">foo</p>&#x000A;</blockquote>&#x000A;<hr data-sourcepos="2:1-2:5">
+ wysiwyg: |-
+ <blockquote multiline="false"><p>foo</p></blockquote>
+04_03__leaf_blocks__setext_headings__23:
+ canonical: |
+ <h2>&gt; foo</h2>
+ static: |-
+ <h2 data-sourcepos="1:1-2:6" dir="auto">&#x000A;<a id="user-content--foo" class="anchor" href="#-foo" aria-hidden="true"></a>&gt; foo</h2>
+ wysiwyg: |-
+ <h2>&gt; foo</h2>
+04_03__leaf_blocks__setext_headings__24:
+ canonical: |
+ <p>Foo</p>
+ <h2>bar</h2>
+ <p>baz</p>
+ static: |-
+ <p data-sourcepos="1:1-1:3" dir="auto">Foo</p>&#x000A;<h2 data-sourcepos="3:1-5:3" dir="auto">&#x000A;<a id="user-content-bar" class="anchor" href="#bar" aria-hidden="true"></a>bar</h2>&#x000A;<p data-sourcepos="5:1-5:3" dir="auto">baz</p>
+ wysiwyg: |-
+ <p>Foo</p>
+04_03__leaf_blocks__setext_headings__25:
+ canonical: |
+ <p>Foo
+ bar</p>
+ <hr />
+ <p>baz</p>
+ static: |-
+ <p data-sourcepos="1:1-2:3" dir="auto">Foo&#x000A;bar</p>&#x000A;<hr data-sourcepos="4:1-5:0">&#x000A;<p data-sourcepos="6:1-6:3" dir="auto">baz</p>
+ wysiwyg: |-
+ <p>Foo
+ bar</p>
+04_03__leaf_blocks__setext_headings__26:
+ canonical: |
+ <p>Foo
+ bar</p>
+ <hr />
+ <p>baz</p>
+ static: |-
+ <p data-sourcepos="1:1-2:3" dir="auto">Foo&#x000A;bar</p>&#x000A;<hr data-sourcepos="3:1-3:5">&#x000A;<p data-sourcepos="4:1-4:3" dir="auto">baz</p>
+ wysiwyg: |-
+ <p>Foo
+ bar</p>
+04_03__leaf_blocks__setext_headings__27:
+ canonical: |
+ <p>Foo
+ bar
+ ---
+ baz</p>
+ static: |-
+ <p data-sourcepos="1:1-4:3" dir="auto">Foo&#x000A;bar&#x000A;---&#x000A;baz</p>
+ wysiwyg: |-
+ <p>Foo
+ bar
+ ---
+ baz</p>
+04_04__leaf_blocks__indented_code_blocks__01:
+ canonical: |
+ <pre><code>a simple
+ indented code block
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:5-2:25" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">a simple</span>&#x000A;<span id="LC2" class="line" lang="plaintext"> indented code block</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>a simple
+ indented code block</code></pre>
+04_04__leaf_blocks__indented_code_blocks__02:
+ canonical: |
+ <ul>
+ <li>
+ <p>foo</p>
+ <p>bar</p>
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:3-3:7" dir="auto">&#x000A;<li data-sourcepos="1:3-3:7">&#x000A;<p data-sourcepos="1:5-1:7">foo</p>&#x000A;<p data-sourcepos="3:5-3:7">bar</p>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>foo</p><p>bar</p></li></ul>
+04_04__leaf_blocks__indented_code_blocks__03:
+ canonical: |
+ <ol>
+ <li>
+ <p>foo</p>
+ <ul>
+ <li>bar</li>
+ </ul>
+ </li>
+ </ol>
+ static: |-
+ <ol data-sourcepos="1:1-3:9" dir="auto">&#x000A;<li data-sourcepos="1:1-3:9">&#x000A;<p data-sourcepos="1:5-1:7">foo</p>&#x000A;<ul data-sourcepos="3:5-3:9">&#x000A;<li data-sourcepos="3:5-3:9">bar</li>&#x000A;</ul>&#x000A;</li>&#x000A;</ol>
+ wysiwyg: |-
+ <ol parens="false"><li><p>foo</p><ul bullet="*"><li><p>bar</p></li></ul></li></ol>
+04_04__leaf_blocks__indented_code_blocks__04:
+ canonical: |
+ <pre><code>&lt;a/&gt;
+ *hi*
+
+ - one
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:5-4:9" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">&lt;a/&gt;</span>&#x000A;<span id="LC2" class="line" lang="plaintext">*hi*</span>&#x000A;<span id="LC3" class="line" lang="plaintext"></span>&#x000A;<span id="LC4" class="line" lang="plaintext">- one</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>&lt;a/&gt;
+ *hi*
+
+ - one</code></pre>
+04_04__leaf_blocks__indented_code_blocks__05:
+ canonical: |
+ <pre><code>chunk1
+
+ chunk2
+
+
+
+ chunk3
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:5-7:10" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">chunk1</span>&#x000A;<span id="LC2" class="line" lang="plaintext"></span>&#x000A;<span id="LC3" class="line" lang="plaintext">chunk2</span>&#x000A;<span id="LC4" class="line" lang="plaintext"></span>&#x000A;<span id="LC5" class="line" lang="plaintext"></span>&#x000A;<span id="LC6" class="line" lang="plaintext"></span>&#x000A;<span id="LC7" class="line" lang="plaintext">chunk3</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>chunk1
+
+ chunk2
+
+
+
+ chunk3</code></pre>
+04_04__leaf_blocks__indented_code_blocks__06:
+ canonical: "<pre><code>chunk1\n \n chunk2\n</code></pre>\n"
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:5-3:12" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">chunk1</span>&#x000A;<span id="LC2" class="line" lang="plaintext"> </span>&#x000A;<span id="LC3" class="line" lang="plaintext"> chunk2</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: "<pre class=\"content-editor-code-block undefined code highlight\"><code>chunk1\n
+ \ \n chunk2</code></pre>"
+04_04__leaf_blocks__indented_code_blocks__07:
+ canonical: |
+ <p>Foo
+ bar</p>
+ static: |-
+ <p data-sourcepos="1:1-2:7" dir="auto">Foo&#x000A;bar</p>
+ wysiwyg: |-
+ <p>Foo
+ bar</p>
+04_04__leaf_blocks__indented_code_blocks__08:
+ canonical: |
+ <pre><code>foo
+ </code></pre>
+ <p>bar</p>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:5-1:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;<p data-sourcepos="2:1-2:3" dir="auto">bar</p>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>foo</code></pre>
+04_04__leaf_blocks__indented_code_blocks__09:
+ canonical: |
+ <h1>Heading</h1>
+ <pre><code>foo
+ </code></pre>
+ <h2>Heading</h2>
+ <pre><code>foo
+ </code></pre>
+ <hr />
+ static: |-
+ <h1 data-sourcepos="1:1-1:9" dir="auto">&#x000A;<a id="user-content-heading" class="anchor" href="#heading" aria-hidden="true"></a>Heading</h1>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="2:5-2:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;<h2 data-sourcepos="3:1-5:7" dir="auto">&#x000A;<a id="user-content-heading-1" class="anchor" href="#heading-1" aria-hidden="true"></a>Heading</h2>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="5:5-5:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;<hr data-sourcepos="6:1-6:4">
+ wysiwyg: |-
+ <h1>Heading</h1>
+04_04__leaf_blocks__indented_code_blocks__10:
+ canonical: |
+ <pre><code> foo
+ bar
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:5-2:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext"> foo</span>&#x000A;<span id="LC2" class="line" lang="plaintext">bar</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code> foo
+ bar</code></pre>
+04_04__leaf_blocks__indented_code_blocks__11:
+ canonical: |
+ <pre><code>foo
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="3:5-5:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>foo</code></pre>
+04_04__leaf_blocks__indented_code_blocks__12:
+ canonical: "<pre><code>foo \n</code></pre>\n"
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:5-1:9" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo </span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>foo </code></pre>
+04_05__leaf_blocks__fenced_code_blocks__01:
+ canonical: |
+ <pre><code>&lt;
+ &gt;
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-4:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">&lt;</span>&#x000A;<span id="LC2" class="line" lang="plaintext"> &gt;</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>&lt;
+ &gt;</code></pre>
+04_05__leaf_blocks__fenced_code_blocks__02:
+ canonical: |
+ <pre><code>&lt;
+ &gt;
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-4:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">&lt;</span>&#x000A;<span id="LC2" class="line" lang="plaintext"> &gt;</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>&lt;
+ &gt;</code></pre>
+04_05__leaf_blocks__fenced_code_blocks__03:
+ canonical: |
+ <p><code>foo</code></p>
+ static: |-
+ <p data-sourcepos="1:1-3:2" dir="auto"><code>foo</code></p>
+ wysiwyg: |-
+ <p><code>foo</code></p>
+04_05__leaf_blocks__fenced_code_blocks__04:
+ canonical: |
+ <pre><code>aaa
+ ~~~
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-4:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span>&#x000A;<span id="LC2" class="line" lang="plaintext">~~~</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>aaa
+ ~~~</code></pre>
+04_05__leaf_blocks__fenced_code_blocks__05:
+ canonical: |
+ <pre><code>aaa
+ ```
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-4:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span>&#x000A;<span id="LC2" class="line" lang="plaintext">```</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>aaa
+ ```</code></pre>
+04_05__leaf_blocks__fenced_code_blocks__06:
+ canonical: |
+ <pre><code>aaa
+ ```
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-4:6" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span>&#x000A;<span id="LC2" class="line" lang="plaintext">```</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>aaa
+ ```</code></pre>
+04_05__leaf_blocks__fenced_code_blocks__07:
+ canonical: |
+ <pre><code>aaa
+ ~~~
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-4:4" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span>&#x000A;<span id="LC2" class="line" lang="plaintext">~~~</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>aaa
+ ~~~</code></pre>
+04_05__leaf_blocks__fenced_code_blocks__08:
+ canonical: |
+ <pre><code></code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-1:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code></code></pre>
+04_05__leaf_blocks__fenced_code_blocks__09:
+ canonical: |
+ <pre><code>
+ ```
+ aaa
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-4:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext"></span>&#x000A;<span id="LC2" class="line" lang="plaintext">```</span>&#x000A;<span id="LC3" class="line" lang="plaintext">aaa</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>
+ ```
+ aaa</code></pre>
+04_05__leaf_blocks__fenced_code_blocks__10:
+ canonical: |
+ <blockquote>
+ <pre><code>aaa
+ </code></pre>
+ </blockquote>
+ <p>bbb</p>
+ static: |-
+ <blockquote data-sourcepos="1:1-2:5" dir="auto">&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:3-3:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;</blockquote>&#x000A;<p data-sourcepos="4:1-4:3" dir="auto">bbb</p>
+ wysiwyg: |-
+ <blockquote multiline="false"><pre class="content-editor-code-block undefined code highlight"><code>aaa</code></pre></blockquote>
+04_05__leaf_blocks__fenced_code_blocks__11:
+ canonical: "<pre><code>\n \n</code></pre>\n"
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-4:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext"></span>&#x000A;<span id="LC2" class="line" lang="plaintext"> </span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>
+ </code></pre>
+04_05__leaf_blocks__fenced_code_blocks__12:
+ canonical: |
+ <pre><code></code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-2:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code></code></pre>
+04_05__leaf_blocks__fenced_code_blocks__13:
+ canonical: |
+ <pre><code>aaa
+ aaa
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:2-4:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span>&#x000A;<span id="LC2" class="line" lang="plaintext">aaa</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>aaa
+ aaa</code></pre>
+04_05__leaf_blocks__fenced_code_blocks__14:
+ canonical: |
+ <pre><code>aaa
+ aaa
+ aaa
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:3-5:5" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span>&#x000A;<span id="LC2" class="line" lang="plaintext">aaa</span>&#x000A;<span id="LC3" class="line" lang="plaintext">aaa</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>aaa
+ aaa
+ aaa</code></pre>
+04_05__leaf_blocks__fenced_code_blocks__15:
+ canonical: |
+ <pre><code>aaa
+ aaa
+ aaa
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:4-5:6" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span>&#x000A;<span id="LC2" class="line" lang="plaintext"> aaa</span>&#x000A;<span id="LC3" class="line" lang="plaintext">aaa</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>aaa
+ aaa
+ aaa</code></pre>
+04_05__leaf_blocks__fenced_code_blocks__16:
+ canonical: |
+ <pre><code>```
+ aaa
+ ```
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:5-3:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">```</span>&#x000A;<span id="LC2" class="line" lang="plaintext">aaa</span>&#x000A;<span id="LC3" class="line" lang="plaintext">```</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>```
+ aaa
+ ```</code></pre>
+04_05__leaf_blocks__fenced_code_blocks__17:
+ canonical: |
+ <pre><code>aaa
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-3:5" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>aaa</code></pre>
+04_05__leaf_blocks__fenced_code_blocks__18:
+ canonical: |
+ <pre><code>aaa
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:4-3:5" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>aaa</code></pre>
+04_05__leaf_blocks__fenced_code_blocks__19:
+ canonical: |
+ <pre><code>aaa
+ ```
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-3:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span>&#x000A;<span id="LC2" class="line" lang="plaintext"> ```</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>aaa
+ ```</code></pre>
+04_05__leaf_blocks__fenced_code_blocks__20:
+ canonical: |
+ <p><code> </code>
+ aaa</p>
+ static: |-
+ <p data-sourcepos="1:1-2:3" dir="auto"><code> </code>&#x000A;aaa</p>
+ wysiwyg: |-
+ <p><code>
+ aaa</code></p>
+04_05__leaf_blocks__fenced_code_blocks__21:
+ canonical: |
+ <pre><code>aaa
+ ~~~ ~~
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-3:6" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span>&#x000A;<span id="LC2" class="line" lang="plaintext">~~~ ~~</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>aaa
+ ~~~ ~~</code></pre>
+04_05__leaf_blocks__fenced_code_blocks__22:
+ canonical: |
+ <p>foo</p>
+ <pre><code>bar
+ </code></pre>
+ <p>baz</p>
+ static: |-
+ <p data-sourcepos="1:1-1:3" dir="auto">foo</p>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="2:1-4:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">bar</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;<p data-sourcepos="5:1-5:3" dir="auto">baz</p>
+ wysiwyg: |-
+ <p>foo</p>
+04_05__leaf_blocks__fenced_code_blocks__23:
+ canonical: |
+ <h2>foo</h2>
+ <pre><code>bar
+ </code></pre>
+ <h1>baz</h1>
+ static: |-
+ <h2 data-sourcepos="1:1-3:3" dir="auto">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>foo</h2>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="3:1-5:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">bar</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;<h1 data-sourcepos="6:1-6:5" dir="auto">&#x000A;<a id="user-content-baz" class="anchor" href="#baz" aria-hidden="true"></a>baz</h1>
+ wysiwyg: |-
+ <h2>foo</h2>
+04_05__leaf_blocks__fenced_code_blocks__24:
+ canonical: |
+ <pre><code class="language-ruby">def foo(x)
+ return 3
+ end
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-5:3" class="code highlight js-syntax-highlight language-ruby" lang="ruby" v-pre="true"><code><span id="LC1" class="line" lang="ruby"><span class="k">def</span> <span class="nf">foo</span><span class="p">(</span><span class="n">x</span><span class="p">)</span></span>&#x000A;<span id="LC2" class="line" lang="ruby"> <span class="k">return</span> <span class="mi">3</span></span>&#x000A;<span id="LC3" class="line" lang="ruby"><span class="k">end</span></span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre language="ruby" class="content-editor-code-block undefined code highlight"><code>def foo(x)
+ return 3
+ end</code></pre>
+04_05__leaf_blocks__fenced_code_blocks__25:
+ canonical: |
+ <pre><code class="language-ruby">def foo(x)
+ return 3
+ end
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-5:7" class="code highlight js-syntax-highlight language-ruby" lang="ruby" v-pre="true"><code><span id="LC1" class="line" lang="ruby"><span class="k">def</span> <span class="nf">foo</span><span class="p">(</span><span class="n">x</span><span class="p">)</span></span>&#x000A;<span id="LC2" class="line" lang="ruby"> <span class="k">return</span> <span class="mi">3</span></span>&#x000A;<span id="LC3" class="line" lang="ruby"><span class="k">end</span></span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre language="ruby" class="content-editor-code-block undefined code highlight"><code>def foo(x)
+ return 3
+ end</code></pre>
+04_05__leaf_blocks__fenced_code_blocks__26:
+ canonical: |
+ <pre><code class="language-;"></code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-2:4" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre language=";" class="content-editor-code-block undefined code highlight"><code></code></pre>
+04_05__leaf_blocks__fenced_code_blocks__27:
+ canonical: |
+ <p><code>aa</code>
+ foo</p>
+ static: |-
+ <p data-sourcepos="1:1-2:3" dir="auto"><code>aa</code>&#x000A;foo</p>
+ wysiwyg: |-
+ <p><code>aa</code>
+ foo</p>
+04_05__leaf_blocks__fenced_code_blocks__28:
+ canonical: |
+ <pre><code class="language-aa">foo
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-3:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre language="aa" class="content-editor-code-block undefined code highlight"><code>foo</code></pre>
+04_05__leaf_blocks__fenced_code_blocks__29:
+ canonical: |
+ <pre><code>``` aaa
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-3:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">``` aaa</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>``` aaa</code></pre>
+04_06__leaf_blocks__html_blocks__01:
+ canonical: |
+ <table><tr><td>
+ <pre>
+ **Hello**,
+ <p><em>world</em>.
+ </pre></p>
+ </td></tr></table>
+ static: |-
+ <table dir="auto"><tr><td>&#x000A;<pre>&#x000A;**Hello**,&#x000A;<p data-sourcepos="5:1-6:6"><em>world</em>.&#x000A;</p></pre>&#x000A;</td></tr></table>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "table" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__02:
+ canonical: |
+ <table>
+ <tr>
+ <td>
+ hi
+ </td>
+ </tr>
+ </table>
+ <p>okay.</p>
+ static: |-
+ <table dir="auto">&#x000A; <tr>&#x000A; <td>&#x000A; hi&#x000A; </td>&#x000A; </tr>&#x000A;</table>&#x000A;<p data-sourcepos="9:1-9:5" dir="auto">okay.</p>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "table" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__03:
+ canonical: |2
+ <div>
+ *hello*
+ <foo><a>
+ static: |2-
+ <div>&#x000A; *hello*&#x000A; <a></a>&#x000A;</div>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__04:
+ canonical: |
+ </div>
+ *foo*
+ static: |-
+ &#x000A;*foo*
+ wysiwyg: |-
+ Error - check implementation:
+ Cannot read properties of undefined (reading 'wrapTextInParagraph')
+04_06__leaf_blocks__html_blocks__05:
+ canonical: |
+ <DIV CLASS="foo">
+ <p><em>Markdown</em></p>
+ </DIV>
+ static: |-
+ <div>&#x000A;<p data-sourcepos="3:1-3:10"><em>Markdown</em></p>&#x000A;</div>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__06:
+ canonical: |
+ <div id="foo"
+ class="bar">
+ </div>
+ static: |-
+ <div>&#x000A;</div>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__07:
+ canonical: |
+ <div id="foo" class="bar
+ baz">
+ </div>
+ static: |-
+ <div>&#x000A;</div>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__08:
+ canonical: |
+ <div>
+ *foo*
+ <p><em>bar</em></p>
+ static: |-
+ <div>&#x000A;*foo*&#x000A;<p data-sourcepos="4:1-4:5"><em>bar</em></p>&#x000A;</div>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__09:
+ canonical: |
+ <div id="foo"
+ *hi*
+ static: |-
+ <div></div>
+ wysiwyg: |-
+ <p></p>
+04_06__leaf_blocks__html_blocks__10:
+ canonical: |
+ <div class
+ foo
+ static: |-
+ <div></div>
+ wysiwyg: |-
+ <p></p>
+04_06__leaf_blocks__html_blocks__11:
+ canonical: |
+ <div *???-&&&-<---
+ *foo*
+ static: |-
+ <div></div>
+ wysiwyg: |-
+ <p></p>
+04_06__leaf_blocks__html_blocks__12:
+ canonical: |
+ <div><a href="bar">*foo*</a></div>
+ static: |-
+ <div><a href="bar">*foo*</a></div>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__13:
+ canonical: |
+ <table><tr><td>
+ foo
+ </td></tr></table>
+ static: |-
+ <table dir="auto"><tr><td>&#x000A;foo&#x000A;</td></tr></table>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "table" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__14:
+ canonical: |
+ <div></div>
+ ``` c
+ int x = 33;
+ ```
+ static: |-
+ <div></div>&#x000A;``` c&#x000A;int x = 33;&#x000A;```
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__15:
+ canonical: |
+ <a href="foo">
+ *bar*
+ </a>
+ static: |-
+ <a href="foo">&#x000A;*bar*&#x000A;</a>
+ wysiwyg: |-
+ Error - check implementation:
+ Cannot read properties of undefined (reading 'wrapTextInParagraph')
+04_06__leaf_blocks__html_blocks__16:
+ canonical: |
+ <Warning>
+ *bar*
+ </Warning>
+ static: |-
+ &#x000A;*bar*
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "warning" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__17:
+ canonical: |
+ <i class="foo">
+ *bar*
+ </i>
+ static: |-
+ <i>&#x000A;*bar*&#x000A;</i>
+ wysiwyg: |-
+ Error - check implementation:
+ Cannot read properties of undefined (reading 'wrapTextInParagraph')
+04_06__leaf_blocks__html_blocks__18:
+ canonical: |
+ </ins>
+ *bar*
+ static: |-
+ &#x000A;*bar*
+ wysiwyg: |-
+ Error - check implementation:
+ Cannot read properties of undefined (reading 'wrapTextInParagraph')
+04_06__leaf_blocks__html_blocks__19:
+ canonical: |
+ <del>
+ *foo*
+ </del>
+ static: |-
+ <del>&#x000A;*foo*&#x000A;</del>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "del" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__20:
+ canonical: |
+ <del>
+ <p><em>foo</em></p>
+ </del>
+ static: |-
+ <del>&#x000A;<p data-sourcepos="3:1-3:5"><em>foo</em></p>&#x000A;</del>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "del" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__21:
+ canonical: |
+ <p><del><em>foo</em></del></p>
+ static: |-
+ <p data-sourcepos="1:1-1:16" dir="auto"><del><em>foo</em></del></p>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "del" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__22:
+ canonical: |
+ <pre language="haskell"><code>
+ import Text.HTML.TagSoup
+
+ main :: IO ()
+ main = print $ parseTags tags
+ </code></pre>
+ <p>okay</p>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext"></span>&#x000A;<span id="LC2" class="line" lang="plaintext">import Text.HTML.TagSoup</span>&#x000A;<span id="LC3" class="line" lang="plaintext"></span>&#x000A;<span id="LC4" class="line" lang="plaintext">main :: IO ()</span>&#x000A;<span id="LC5" class="line" lang="plaintext">main = print $ parseTags tags</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;<p data-sourcepos="7:1-7:4" dir="auto">okay</p>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>
+ import Text.HTML.TagSoup
+
+ main :: IO ()
+ main = print $ parseTags tags</code></pre>
+04_06__leaf_blocks__html_blocks__23:
+ canonical: |
+ <script type="text/javascript">
+ // JavaScript example
+
+ document.getElementById("demo").innerHTML = "Hello JavaScript!";
+ </script>
+ <p>okay</p>
+ static: |-
+ &#x000A;<p data-sourcepos="6:1-6:4" dir="auto">okay</p>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "script" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__24:
+ canonical: |
+ <style
+ type="text/css">
+ h1 {color:red;}
+
+ p {color:blue;}
+ </style>
+ <p>okay</p>
+ static: |-
+ &#x000A;h1 {color:red;}&#x000A;&#x000A;p {color:blue;}&#x000A;&#x000A;<p data-sourcepos="7:1-7:4" dir="auto">okay</p>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "style" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__25:
+ canonical: |
+ <style
+ type="text/css">
+
+ foo
+ static: |-
+ &#x000A;&#x000A;foo
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "style" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__26:
+ canonical: |
+ <blockquote>
+ <div>
+ foo
+ </blockquote>
+ <p>bar</p>
+ static: |-
+ <blockquote data-sourcepos="1:1-2:5" dir="auto">&#x000A;<div>&#x000A;foo&#x000A;&#x000A;<p data-sourcepos="4:1-4:3">bar</p>&#x000A;</div>&#x000A;</blockquote>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__27:
+ canonical: |
+ <ul>
+ <li>
+ <div>
+ </li>
+ <li>foo</li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-2:5" dir="auto">&#x000A;<li data-sourcepos="1:1-1:7">&#x000A;<div>&#x000A;&#x000A;<li data-sourcepos="2:1-2:5">foo</li>&#x000A;</div>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__28:
+ canonical: |
+ <style>p{color:red;}</style>
+ <p><em>foo</em></p>
+ static: |-
+ p{color:red;}&#x000A;<p data-sourcepos="2:1-2:5" dir="auto"><em>foo</em></p>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "style" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__29:
+ canonical: |
+ <!-- foo -->*bar*
+ <p><em>baz</em></p>
+ static: |-
+ *bar*&#x000A;<p data-sourcepos="2:1-2:5" dir="auto"><em>baz</em></p>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "comment" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__30:
+ canonical: |
+ <script>
+ foo
+ </script>1. *bar*
+ static: |-
+ 1. *bar*
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "script" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__31:
+ canonical: |
+ <!-- Foo
+
+ bar
+ baz -->
+ <p>okay</p>
+ static: |-
+ &#x000A;<p data-sourcepos="5:1-5:4" dir="auto">okay</p>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "comment" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__32:
+ canonical: |
+ <?php
+
+ echo '>';
+
+ ?>
+ <p>okay</p>
+ static: |-
+ <?php echo '>';&#x000A;&#x000A;?&gt;&#x000A;<p data-sourcepos="6:1-6:4" dir="auto">okay</p>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "comment" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__33:
+ canonical: |
+ <!DOCTYPE html>
+ static: ""
+ wysiwyg: |-
+ <p></p>
+04_06__leaf_blocks__html_blocks__34:
+ canonical: |
+ <![CDATA[
+ function matchwo(a,b)
+ {
+ if (a < b && a < 0) then {
+ return 1;
+
+ } else {
+
+ return 0;
+ }
+ }
+ ]]>
+ <p>okay</p>
+ static: |-
+ &#x000A;<p data-sourcepos="13:1-13:4" dir="auto">okay</p>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "comment" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__35:
+ canonical: |2
+ <!-- foo -->
+ <pre><code>&lt;!-- foo --&gt;
+ </code></pre>
+ static: |2-
+ &#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="3:5-3:16" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">&lt;!-- foo --&gt;</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "comment" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__36:
+ canonical: |2
+ <div>
+ <pre><code>&lt;div&gt;
+ </code></pre>
+ static: |2-
+ <div>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="3:5-3:9" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">&lt;div&gt;</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;</div>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__37:
+ canonical: |
+ <p>Foo</p>
+ <div>
+ bar
+ </div>
+ static: |-
+ <p data-sourcepos="1:1-1:3" dir="auto">Foo</p>&#x000A;<div>&#x000A;bar&#x000A;</div>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__38:
+ canonical: |
+ <div>
+ bar
+ </div>
+ *foo*
+ static: |-
+ <div>&#x000A;bar&#x000A;</div>&#x000A;*foo*
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__39:
+ canonical: |
+ <p>Foo
+ <a href="bar">
+ baz</p>
+ static: |-
+ <p data-sourcepos="1:1-3:3" dir="auto">Foo&#x000A;<a href="bar">&#x000A;baz</a></p>
+ wysiwyg: |-
+ <p>Foo
+ <a target="_blank" rel="noopener noreferrer nofollow" href="bar">
+ baz</a></p>
+04_06__leaf_blocks__html_blocks__40:
+ canonical: |
+ <div>
+ <p><em>Emphasized</em> text.</p>
+ </div>
+ static: |-
+ <div>&#x000A;<p data-sourcepos="3:1-3:18"><em>Emphasized</em> text.</p>&#x000A;</div>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__41:
+ canonical: |
+ <div>
+ *Emphasized* text.
+ </div>
+ static: |-
+ <div>&#x000A;*Emphasized* text.&#x000A;</div>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__42:
+ canonical: |
+ <table>
+ <tr>
+ <td>
+ Hi
+ </td>
+ </tr>
+ </table>
+ static: |-
+ <table dir="auto">&#x000A;<tr>&#x000A;<td>&#x000A;Hi&#x000A;</td>&#x000A;</tr>&#x000A;</table>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "table" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__43:
+ canonical: |
+ <table>
+ <tr>
+ <pre><code>&lt;td&gt;
+ Hi
+ &lt;/td&gt;
+ </code></pre>
+ </tr>
+ </table>
+ static: |-
+ <table dir="auto">&#x000A; <tr>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="5:5-8:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">&lt;td&gt;</span>&#x000A;<span id="LC2" class="line" lang="plaintext"> Hi</span>&#x000A;<span id="LC3" class="line" lang="plaintext">&lt;/td&gt;</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A; </tr>&#x000A;</table>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "table" not supported by this converter. Please, provide an specification.
+04_07__leaf_blocks__link_reference_definitions__01:
+ canonical: |
+ <p><a href="/url" title="title">foo</a></p>
+ static: |-
+ <p data-sourcepos="3:1-3:5" dir="auto"><a href="/url" title="title">foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url" title="title">foo</a></p>
+04_07__leaf_blocks__link_reference_definitions__02:
+ canonical: |
+ <p><a href="/url" title="the title">foo</a></p>
+ static: |-
+ <p data-sourcepos="5:1-5:5" dir="auto"><a href="/url" title="the title">foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url" title="the title">foo</a></p>
+04_07__leaf_blocks__link_reference_definitions__03:
+ canonical: |
+ <p><a href="my_(url)" title="title (with parens)">Foo*bar]</a></p>
+ static: |-
+ <p data-sourcepos="3:1-3:11" dir="auto"><a href="my_(url)" title="title (with parens)">Foo*bar]</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="my_(url)" title="title (with parens)">Foo*bar]</a></p>
+04_07__leaf_blocks__link_reference_definitions__04:
+ canonical: |
+ <p><a href="my%20url" title="title">Foo bar</a></p>
+ static: |-
+ <p data-sourcepos="5:1-5:9" dir="auto"><a href="my%20url" title="title">Foo bar</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="my%20url" title="title">Foo bar</a></p>
+04_07__leaf_blocks__link_reference_definitions__05:
+ canonical: |
+ <p><a href="/url" title="
+ title
+ line1
+ line2
+ ">foo</a></p>
+ static: |-
+ <p data-sourcepos="7:1-7:5" dir="auto"><a href="/url" title="&#x000A;title&#x000A;line1&#x000A;line2&#x000A;">foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url" title="
+ title
+ line1
+ line2
+ ">foo</a></p>
+04_07__leaf_blocks__link_reference_definitions__06:
+ canonical: |
+ <p>[foo]: /url 'title</p>
+ <p>with blank line'</p>
+ <p>[foo]</p>
+ static: |-
+ <p data-sourcepos="1:1-1:18" dir="auto">[foo]: /url 'title</p>&#x000A;<p data-sourcepos="3:1-3:16" dir="auto">with blank line'</p>&#x000A;<p data-sourcepos="5:1-5:5" dir="auto">[foo]</p>
+ wysiwyg: |-
+ <p>[foo]: /url 'title</p>
+04_07__leaf_blocks__link_reference_definitions__07:
+ canonical: |
+ <p><a href="/url">foo</a></p>
+ static: |-
+ <p data-sourcepos="4:1-4:5" dir="auto"><a href="/url">foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url">foo</a></p>
+04_07__leaf_blocks__link_reference_definitions__08:
+ canonical: |
+ <p>[foo]:</p>
+ <p>[foo]</p>
+ static: |-
+ <p data-sourcepos="1:1-1:6" dir="auto">[foo]:</p>&#x000A;<p data-sourcepos="3:1-3:5" dir="auto">[foo]</p>
+ wysiwyg: |-
+ <p>[foo]:</p>
+04_07__leaf_blocks__link_reference_definitions__09:
+ canonical: |
+ <p><a href="">foo</a></p>
+ static: |-
+ <p data-sourcepos="3:1-3:5" dir="auto"><a href="">foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="">foo</a></p>
+04_07__leaf_blocks__link_reference_definitions__10:
+ canonical: |
+ <p>[foo]: <bar>(baz)</p>
+ <p>[foo]</p>
+ static: |-
+ <p data-sourcepos="1:1-1:17" dir="auto">[foo]: (baz)</p>&#x000A;<p data-sourcepos="3:1-3:5" dir="auto">[foo]</p>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "bar" not supported by this converter. Please, provide an specification.
+04_07__leaf_blocks__link_reference_definitions__11:
+ canonical: |
+ <p><a href="/url%5Cbar*baz" title="foo&quot;bar\baz">foo</a></p>
+ static: |-
+ <p data-sourcepos="3:1-3:5" dir="auto"><a href="/url%5Cbar*baz" title='foo"bar\baz'>foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url%5Cbar*baz" title="foo&quot;bar\baz">foo</a></p>
+04_07__leaf_blocks__link_reference_definitions__12:
+ canonical: |
+ <p><a href="url">foo</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:5" dir="auto"><a href="url">foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="url">foo</a></p>
+04_07__leaf_blocks__link_reference_definitions__13:
+ canonical: |
+ <p><a href="first">foo</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:5" dir="auto"><a href="first">foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="first">foo</a></p>
+04_07__leaf_blocks__link_reference_definitions__14:
+ canonical: |
+ <p><a href="/url">Foo</a></p>
+ static: |-
+ <p data-sourcepos="3:1-3:5" dir="auto"><a href="/url">Foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url">Foo</a></p>
+04_07__leaf_blocks__link_reference_definitions__15:
+ canonical: |
+ <p><a href="/%CF%86%CE%BF%CF%85">αγω</a></p>
+ static: |-
+ <p data-sourcepos="3:1-3:8" dir="auto"><a href="/%CF%86%CE%BF%CF%85">αγω</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/%CF%86%CE%BF%CF%85">αγω</a></p>
+04_07__leaf_blocks__link_reference_definitions__16:
+ canonical: ""
+ static: ""
+ wysiwyg: |-
+ <p></p>
+04_07__leaf_blocks__link_reference_definitions__17:
+ canonical: |
+ <p>bar</p>
+ static: |-
+ <p data-sourcepos="1:1-4:3" dir="auto">bar</p>
+ wysiwyg: |-
+ <p>bar</p>
+04_07__leaf_blocks__link_reference_definitions__18:
+ canonical: |
+ <p>[foo]: /url &quot;title&quot; ok</p>
+ static: |-
+ <p data-sourcepos="1:1-1:22" dir="auto">[foo]: /url "title" ok</p>
+ wysiwyg: |-
+ <p>[foo]: /url "title" ok</p>
+04_07__leaf_blocks__link_reference_definitions__19:
+ canonical: |
+ <p>&quot;title&quot; ok</p>
+ static: |-
+ <p data-sourcepos="1:1-2:10" dir="auto">"title" ok</p>
+ wysiwyg: |-
+ <p>"title" ok</p>
+04_07__leaf_blocks__link_reference_definitions__20:
+ canonical: |
+ <pre><code>[foo]: /url &quot;title&quot;
+ </code></pre>
+ <p>[foo]</p>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:5-2:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">[foo]: /url "title"</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;<p data-sourcepos="3:1-3:5" dir="auto">[foo]</p>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>[foo]: /url "title"</code></pre>
+04_07__leaf_blocks__link_reference_definitions__21:
+ canonical: |
+ <pre><code>[foo]: /url
+ </code></pre>
+ <p>[foo]</p>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-3:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">[foo]: /url</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;<p data-sourcepos="5:1-5:5" dir="auto">[foo]</p>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>[foo]: /url</code></pre>
+04_07__leaf_blocks__link_reference_definitions__22:
+ canonical: |
+ <p>Foo
+ [bar]: /baz</p>
+ <p>[bar]</p>
+ static: |-
+ <p data-sourcepos="1:1-2:11" dir="auto">Foo&#x000A;[bar]: /baz</p>&#x000A;<p data-sourcepos="4:1-4:5" dir="auto">[bar]</p>
+ wysiwyg: |-
+ <p>Foo
+ [bar]: /baz</p>
+04_07__leaf_blocks__link_reference_definitions__23:
+ canonical: |
+ <h1><a href="/url">Foo</a></h1>
+ <blockquote>
+ <p>bar</p>
+ </blockquote>
+ static: |-
+ <h1 data-sourcepos="1:1-1:7" dir="auto">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a><a href="/url">Foo</a>&#x000A;</h1>&#x000A;<blockquote data-sourcepos="3:1-3:5" dir="auto">&#x000A;<p data-sourcepos="3:3-3:5">bar</p>&#x000A;</blockquote>
+ wysiwyg: |-
+ <h1><a target="_blank" rel="noopener noreferrer nofollow" href="/url">Foo</a></h1>
+04_07__leaf_blocks__link_reference_definitions__24:
+ canonical: |
+ <h1>bar</h1>
+ <p><a href="/url">foo</a></p>
+ static: |-
+ <h1 data-sourcepos="1:1-4:5" dir="auto">&#x000A;<a id="user-content-bar" class="anchor" href="#bar" aria-hidden="true"></a>bar</h1>&#x000A;<p data-sourcepos="4:1-4:5" dir="auto"><a href="/url">foo</a></p>
+ wysiwyg: |-
+ <h1>bar</h1>
+04_07__leaf_blocks__link_reference_definitions__25:
+ canonical: |
+ <p>===
+ <a href="/url">foo</a></p>
+ static: |-
+ <p data-sourcepos="1:1-3:5" dir="auto">===&#x000A;<a href="/url">foo</a></p>
+ wysiwyg: |-
+ <p>===
+ <a target="_blank" rel="noopener noreferrer nofollow" href="/url">foo</a></p>
+04_07__leaf_blocks__link_reference_definitions__26:
+ canonical: |
+ <p><a href="/foo-url" title="foo">foo</a>,
+ <a href="/bar-url" title="bar">bar</a>,
+ <a href="/baz-url">baz</a></p>
+ static: |-
+ <p data-sourcepos="6:1-8:5" dir="auto"><a href="/foo-url" title="foo">foo</a>,&#x000A;<a href="/bar-url" title="bar">bar</a>,&#x000A;<a href="/baz-url">baz</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/foo-url" title="foo">foo</a>,
+ <a target="_blank" rel="noopener noreferrer nofollow" href="/bar-url" title="bar">bar</a>,
+ <a target="_blank" rel="noopener noreferrer nofollow" href="/baz-url">baz</a></p>
+04_07__leaf_blocks__link_reference_definitions__27:
+ canonical: |
+ <p><a href="/url">foo</a></p>
+ <blockquote>
+ </blockquote>
+ static: |-
+ <p data-sourcepos="1:1-1:5" dir="auto"><a href="/url">foo</a></p>&#x000A;<blockquote data-sourcepos="3:1-3:13" dir="auto">&#x000A;</blockquote>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url">foo</a></p>
+04_07__leaf_blocks__link_reference_definitions__28:
+ canonical: ""
+ static: ""
+ wysiwyg: |-
+ <p></p>
+04_08__leaf_blocks__paragraphs__01:
+ canonical: |
+ <p>aaa</p>
+ <p>bbb</p>
+ static: |-
+ <p data-sourcepos="1:1-1:3" dir="auto">aaa</p>&#x000A;<p data-sourcepos="3:1-3:3" dir="auto">bbb</p>
+ wysiwyg: |-
+ <p>aaa</p>
+04_08__leaf_blocks__paragraphs__02:
+ canonical: |
+ <p>aaa
+ bbb</p>
+ <p>ccc
+ ddd</p>
+ static: |-
+ <p data-sourcepos="1:1-2:3" dir="auto">aaa&#x000A;bbb</p>&#x000A;<p data-sourcepos="4:1-5:3" dir="auto">ccc&#x000A;ddd</p>
+ wysiwyg: |-
+ <p>aaa
+ bbb</p>
+04_08__leaf_blocks__paragraphs__03:
+ canonical: |
+ <p>aaa</p>
+ <p>bbb</p>
+ static: |-
+ <p data-sourcepos="1:1-1:3" dir="auto">aaa</p>&#x000A;<p data-sourcepos="4:1-4:3" dir="auto">bbb</p>
+ wysiwyg: |-
+ <p>aaa</p>
+04_08__leaf_blocks__paragraphs__04:
+ canonical: |
+ <p>aaa
+ bbb</p>
+ static: |-
+ <p data-sourcepos="1:3-2:4" dir="auto">aaa&#x000A;bbb</p>
+ wysiwyg: |-
+ <p>aaa
+ bbb</p>
+04_08__leaf_blocks__paragraphs__05:
+ canonical: |
+ <p>aaa
+ bbb
+ ccc</p>
+ static: |-
+ <p data-sourcepos="1:1-3:42" dir="auto">aaa&#x000A;bbb&#x000A;ccc</p>
+ wysiwyg: |-
+ <p>aaa
+ bbb
+ ccc</p>
+04_08__leaf_blocks__paragraphs__06:
+ canonical: |
+ <p>aaa
+ bbb</p>
+ static: |-
+ <p data-sourcepos="1:4-2:3" dir="auto">aaa&#x000A;bbb</p>
+ wysiwyg: |-
+ <p>aaa
+ bbb</p>
+04_08__leaf_blocks__paragraphs__07:
+ canonical: |
+ <pre><code>aaa
+ </code></pre>
+ <p>bbb</p>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:5-1:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;<p data-sourcepos="2:1-2:3" dir="auto">bbb</p>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>aaa</code></pre>
+04_08__leaf_blocks__paragraphs__08:
+ canonical: |
+ <p>aaa<br />
+ bbb</p>
+ static: |-
+ <p data-sourcepos="1:1-2:8" dir="auto">aaa<br>&#x000A;bbb</p>
+ wysiwyg: |-
+ <p>aaa<br>
+ bbb</p>
+04_09__leaf_blocks__blank_lines__01:
+ canonical: |
+ <p>aaa</p>
+ <h1>aaa</h1>
+ static: |-
+ <p data-sourcepos="3:1-3:3" dir="auto">aaa</p>&#x000A;<h1 data-sourcepos="6:1-6:5" dir="auto">&#x000A;<a id="user-content-aaa" class="anchor" href="#aaa" aria-hidden="true"></a>aaa</h1>
+ wysiwyg: |-
+ <p>aaa</p>
+04_10__leaf_blocks__tables_extension__01:
+ canonical: |
+ <table>
+ <thead>
+ <tr>
+ <th>foo</th>
+ <th>bar</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>baz</td>
+ <td>bim</td>
+ </tr>
+ </tbody>
+ </table>
+ static: |-
+ <table data-sourcepos="1:1-3:13" dir="auto">&#x000A;<thead>&#x000A;<tr data-sourcepos="1:1-1:13">&#x000A;<th data-sourcepos="1:2-1:6">foo</th>&#x000A;<th data-sourcepos="1:8-1:12">bar</th>&#x000A;</tr>&#x000A;</thead>&#x000A;<tbody>&#x000A;<tr data-sourcepos="3:1-3:13">&#x000A;<td data-sourcepos="3:2-3:6">baz</td>&#x000A;<td data-sourcepos="3:8-3:12">bim</td>&#x000A;</tr>&#x000A;</tbody>&#x000A;</table>
+ wysiwyg: |-
+ <p>| foo | bar |
+ | --- | --- |
+ | baz | bim |</p>
+04_10__leaf_blocks__tables_extension__02:
+ canonical: |
+ <table>
+ <thead>
+ <tr>
+ <th align="center">abc</th>
+ <th align="right">defghi</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td align="center">bar</td>
+ <td align="right">baz</td>
+ </tr>
+ </tbody>
+ </table>
+ static: |-
+ <table data-sourcepos="1:1-3:9" dir="auto">&#x000A;<thead>&#x000A;<tr data-sourcepos="1:1-1:16">&#x000A;<th align="center" data-sourcepos="1:2-1:6">abc</th>&#x000A;<th align="right" data-sourcepos="1:8-1:15">defghi</th>&#x000A;</tr>&#x000A;</thead>&#x000A;<tbody>&#x000A;<tr data-sourcepos="3:1-3:9">&#x000A;<td align="center" data-sourcepos="3:1-3:4">bar</td>&#x000A;<td align="right" data-sourcepos="3:6-3:9">baz</td>&#x000A;</tr>&#x000A;</tbody>&#x000A;</table>
+ wysiwyg: |-
+ <p>| abc | defghi |
+ :-: | -----------:
+ bar | baz</p>
+04_10__leaf_blocks__tables_extension__03:
+ canonical: |
+ <table>
+ <thead>
+ <tr>
+ <th>f|oo</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>b <code>|</code> az</td>
+ </tr>
+ <tr>
+ <td>b <strong>|</strong> im</td>
+ </tr>
+ </tbody>
+ </table>
+ static: |-
+ <table data-sourcepos="1:1-4:15" dir="auto">&#x000A;<thead>&#x000A;<tr data-sourcepos="1:1-1:10">&#x000A;<th data-sourcepos="1:2-1:9">f|oo</th>&#x000A;</tr>&#x000A;</thead>&#x000A;<tbody>&#x000A;<tr data-sourcepos="3:1-3:13">&#x000A;<td data-sourcepos="3:2-3:12">b <code>|</code> az</td>&#x000A;</tr>&#x000A;<tr data-sourcepos="4:1-4:15">&#x000A;<td data-sourcepos="4:2-4:14">b <strong>|</strong> im</td>&#x000A;</tr>&#x000A;</tbody>&#x000A;</table>
+ wysiwyg: |-
+ <p>| f|oo |
+ | ------ |
+ | b <code>\|</code> az |
+ | b <strong>|</strong> im |</p>
+04_10__leaf_blocks__tables_extension__04:
+ canonical: |
+ <table>
+ <thead>
+ <tr>
+ <th>abc</th>
+ <th>def</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>bar</td>
+ <td>baz</td>
+ </tr>
+ </tbody>
+ </table>
+ <blockquote>
+ <p>bar</p>
+ </blockquote>
+ static: |-
+ <table data-sourcepos="1:1-3:13" dir="auto">&#x000A;<thead>&#x000A;<tr data-sourcepos="1:1-1:13">&#x000A;<th data-sourcepos="1:2-1:6">abc</th>&#x000A;<th data-sourcepos="1:8-1:12">def</th>&#x000A;</tr>&#x000A;</thead>&#x000A;<tbody>&#x000A;<tr data-sourcepos="3:1-3:13">&#x000A;<td data-sourcepos="3:2-3:6">bar</td>&#x000A;<td data-sourcepos="3:8-3:12">baz</td>&#x000A;</tr>&#x000A;</tbody>&#x000A;</table>&#x000A;<blockquote data-sourcepos="4:1-4:5" dir="auto">&#x000A;<p data-sourcepos="4:3-4:5">bar</p>&#x000A;</blockquote>
+ wysiwyg: |-
+ <p>| abc | def |
+ | --- | --- |
+ | bar | baz |</p>
+04_10__leaf_blocks__tables_extension__05:
+ canonical: |
+ <table>
+ <thead>
+ <tr>
+ <th>abc</th>
+ <th>def</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>bar</td>
+ <td>baz</td>
+ </tr>
+ <tr>
+ <td>bar</td>
+ <td></td>
+ </tr>
+ </tbody>
+ </table>
+ <p>bar</p>
+ static: |-
+ <table data-sourcepos="1:1-4:3" dir="auto">&#x000A;<thead>&#x000A;<tr data-sourcepos="1:1-1:13">&#x000A;<th data-sourcepos="1:2-1:6">abc</th>&#x000A;<th data-sourcepos="1:8-1:12">def</th>&#x000A;</tr>&#x000A;</thead>&#x000A;<tbody>&#x000A;<tr data-sourcepos="3:1-3:13">&#x000A;<td data-sourcepos="3:2-3:6">bar</td>&#x000A;<td data-sourcepos="3:8-3:12">baz</td>&#x000A;</tr>&#x000A;<tr data-sourcepos="4:1-4:3">&#x000A;<td data-sourcepos="4:1-4:3">bar</td>&#x000A;<td data-sourcepos="4:0-4:0"></td>&#x000A;</tr>&#x000A;</tbody>&#x000A;</table>&#x000A;<p data-sourcepos="6:1-6:3" dir="auto">bar</p>
+ wysiwyg: |-
+ <p>| abc | def |
+ | --- | --- |
+ | bar | baz |
+ bar</p>
+04_10__leaf_blocks__tables_extension__06:
+ canonical: |
+ <p>| abc | def |
+ | --- |
+ | bar |</p>
+ static: |-
+ <p data-sourcepos="1:1-3:7" dir="auto">| abc | def |&#x000A;| --- |&#x000A;| bar |</p>
+ wysiwyg: |-
+ <p>| abc | def |
+ | --- |
+ | bar |</p>
+04_10__leaf_blocks__tables_extension__07:
+ canonical: |
+ <table>
+ <thead>
+ <tr>
+ <th>abc</th>
+ <th>def</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>bar</td>
+ <td></td>
+ </tr>
+ <tr>
+ <td>bar</td>
+ <td>baz</td>
+ </tr>
+ </tbody>
+ </table>
+ static: |-
+ <table data-sourcepos="1:1-4:19" dir="auto">&#x000A;<thead>&#x000A;<tr data-sourcepos="1:1-1:13">&#x000A;<th data-sourcepos="1:2-1:6">abc</th>&#x000A;<th data-sourcepos="1:8-1:12">def</th>&#x000A;</tr>&#x000A;</thead>&#x000A;<tbody>&#x000A;<tr data-sourcepos="3:1-3:7">&#x000A;<td data-sourcepos="3:2-3:6">bar</td>&#x000A;<td data-sourcepos="3:0-3:0"></td>&#x000A;</tr>&#x000A;<tr data-sourcepos="4:1-4:19">&#x000A;<td data-sourcepos="4:2-4:6">bar</td>&#x000A;<td data-sourcepos="4:8-4:12">baz</td>&#x000A;</tr>&#x000A;</tbody>&#x000A;</table>
+ wysiwyg: |-
+ <p>| abc | def |
+ | --- | --- |
+ | bar |
+ | bar | baz | boo |</p>
+04_10__leaf_blocks__tables_extension__08:
+ canonical: |
+ <table>
+ <thead>
+ <tr>
+ <th>abc</th>
+ <th>def</th>
+ </tr>
+ </thead>
+ </table>
+ static: |-
+ <table data-sourcepos="1:1-2:13" dir="auto">&#x000A;<thead>&#x000A;<tr data-sourcepos="1:1-1:13">&#x000A;<th data-sourcepos="1:2-1:6">abc</th>&#x000A;<th data-sourcepos="1:8-1:12">def</th>&#x000A;</tr>&#x000A;</thead>&#x000A;</table>
+ wysiwyg: |-
+ <p>| abc | def |
+ | --- | --- |</p>
+05_01__container_blocks__block_quotes__01:
+ canonical: |
+ <blockquote>
+ <h1>Foo</h1>
+ <p>bar
+ baz</p>
+ </blockquote>
+ static: |-
+ <blockquote data-sourcepos="1:1-3:5" dir="auto">&#x000A;<h1 data-sourcepos="1:3-1:7">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>Foo</h1>&#x000A;<p data-sourcepos="2:3-3:5">bar&#x000A;baz</p>&#x000A;</blockquote>
+ wysiwyg: |-
+ <blockquote multiline="false"><h1>Foo</h1><p>bar
+ baz</p></blockquote>
+05_01__container_blocks__block_quotes__02:
+ canonical: |
+ <blockquote>
+ <h1>Foo</h1>
+ <p>bar
+ baz</p>
+ </blockquote>
+ static: |-
+ <blockquote data-sourcepos="1:1-3:5" dir="auto">&#x000A;<h1 data-sourcepos="1:2-1:6">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>Foo</h1>&#x000A;<p data-sourcepos="2:2-3:5">bar&#x000A;baz</p>&#x000A;</blockquote>
+ wysiwyg: |-
+ <blockquote multiline="false"><h1>Foo</h1><p>bar
+ baz</p></blockquote>
+05_01__container_blocks__block_quotes__03:
+ canonical: |
+ <blockquote>
+ <h1>Foo</h1>
+ <p>bar
+ baz</p>
+ </blockquote>
+ static: |-
+ <blockquote data-sourcepos="1:4-3:6" dir="auto">&#x000A;<h1 data-sourcepos="1:6-1:10">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>Foo</h1>&#x000A;<p data-sourcepos="2:6-3:6">bar&#x000A;baz</p>&#x000A;</blockquote>
+ wysiwyg: |-
+ <blockquote multiline="false"><h1>Foo</h1><p>bar
+ baz</p></blockquote>
+05_01__container_blocks__block_quotes__04:
+ canonical: |
+ <pre><code>&gt; # Foo
+ &gt; bar
+ &gt; baz
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:5-3:9" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">&gt; # Foo</span>&#x000A;<span id="LC2" class="line" lang="plaintext">&gt; bar</span>&#x000A;<span id="LC3" class="line" lang="plaintext">&gt; baz</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>&gt; # Foo
+ &gt; bar
+ &gt; baz</code></pre>
+05_01__container_blocks__block_quotes__05:
+ canonical: |
+ <blockquote>
+ <h1>Foo</h1>
+ <p>bar
+ baz</p>
+ </blockquote>
+ static: |-
+ <blockquote data-sourcepos="1:1-3:3" dir="auto">&#x000A;<h1 data-sourcepos="1:3-1:7">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>Foo</h1>&#x000A;<p data-sourcepos="2:3-3:3">bar&#x000A;baz</p>&#x000A;</blockquote>
+ wysiwyg: |-
+ <blockquote multiline="false"><h1>Foo</h1><p>bar
+ baz</p></blockquote>
+05_01__container_blocks__block_quotes__06:
+ canonical: |
+ <blockquote>
+ <p>bar
+ baz
+ foo</p>
+ </blockquote>
+ static: |-
+ <blockquote data-sourcepos="1:1-3:5" dir="auto">&#x000A;<p data-sourcepos="1:3-3:5">bar&#x000A;baz&#x000A;foo</p>&#x000A;</blockquote>
+ wysiwyg: |-
+ <blockquote multiline="false"><p>bar
+ baz
+ foo</p></blockquote>
+05_01__container_blocks__block_quotes__07:
+ canonical: |
+ <blockquote>
+ <p>foo</p>
+ </blockquote>
+ <hr />
+ static: |-
+ <blockquote data-sourcepos="1:1-1:5" dir="auto">&#x000A;<p data-sourcepos="1:3-1:5">foo</p>&#x000A;</blockquote>&#x000A;<hr data-sourcepos="2:1-2:3">
+ wysiwyg: |-
+ <blockquote multiline="false"><p>foo</p></blockquote>
+05_01__container_blocks__block_quotes__08:
+ canonical: |
+ <blockquote>
+ <ul>
+ <li>foo</li>
+ </ul>
+ </blockquote>
+ <ul>
+ <li>bar</li>
+ </ul>
+ static: |-
+ <blockquote data-sourcepos="1:1-1:7" dir="auto">&#x000A;<ul data-sourcepos="1:3-1:7">&#x000A;<li data-sourcepos="1:3-1:7">foo</li>&#x000A;</ul>&#x000A;</blockquote>&#x000A;<ul data-sourcepos="2:1-2:5" dir="auto">&#x000A;<li data-sourcepos="2:1-2:5">bar</li>&#x000A;</ul>
+ wysiwyg: |-
+ <blockquote multiline="false"><ul bullet="*"><li><p>foo</p></li></ul></blockquote>
+05_01__container_blocks__block_quotes__09:
+ canonical: |
+ <blockquote>
+ <pre><code>foo
+ </code></pre>
+ </blockquote>
+ <pre><code>bar
+ </code></pre>
+ static: |-
+ <blockquote data-sourcepos="1:1-1:9" dir="auto">&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:7-1:9" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;</blockquote>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="2:5-2:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">bar</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <blockquote multiline="false"><pre class="content-editor-code-block undefined code highlight"><code>foo</code></pre></blockquote>
+05_01__container_blocks__block_quotes__10:
+ canonical: |
+ <blockquote>
+ <pre><code></code></pre>
+ </blockquote>
+ <p>foo</p>
+ <pre><code></code></pre>
+ static: |-
+ <blockquote data-sourcepos="1:1-1:5" dir="auto">&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:3-2:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;</blockquote>&#x000A;<p data-sourcepos="2:1-2:3" dir="auto">foo</p>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="3:1-3:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <blockquote multiline="false"><pre class="content-editor-code-block undefined code highlight"><code></code></pre></blockquote>
+05_01__container_blocks__block_quotes__11:
+ canonical: |
+ <blockquote>
+ <p>foo
+ - bar</p>
+ </blockquote>
+ static: |-
+ <blockquote data-sourcepos="1:1-2:9" dir="auto">&#x000A;<p data-sourcepos="1:3-2:9">foo&#x000A;- bar</p>&#x000A;</blockquote>
+ wysiwyg: |-
+ <blockquote multiline="false"><p>foo
+ - bar</p></blockquote>
+05_01__container_blocks__block_quotes__12:
+ canonical: |
+ <blockquote>
+ </blockquote>
+ static: |-
+ <blockquote data-sourcepos="1:1-1:1" dir="auto">&#x000A;</blockquote>
+ wysiwyg: |-
+ <blockquote multiline="false"><p></p></blockquote>
+05_01__container_blocks__block_quotes__13:
+ canonical: |
+ <blockquote>
+ </blockquote>
+ static: |-
+ <blockquote data-sourcepos="1:1-3:2" dir="auto">&#x000A;</blockquote>
+ wysiwyg: |-
+ <blockquote multiline="false"><p></p></blockquote>
+05_01__container_blocks__block_quotes__14:
+ canonical: |
+ <blockquote>
+ <p>foo</p>
+ </blockquote>
+ static: |-
+ <blockquote data-sourcepos="1:1-3:3" dir="auto">&#x000A;<p data-sourcepos="2:3-2:5">foo</p>&#x000A;</blockquote>
+ wysiwyg: |-
+ <blockquote multiline="false"><p>foo</p></blockquote>
+05_01__container_blocks__block_quotes__15:
+ canonical: |
+ <blockquote>
+ <p>foo</p>
+ </blockquote>
+ <blockquote>
+ <p>bar</p>
+ </blockquote>
+ static: |-
+ <blockquote data-sourcepos="1:1-1:5" dir="auto">&#x000A;<p data-sourcepos="1:3-1:5">foo</p>&#x000A;</blockquote>&#x000A;<blockquote data-sourcepos="3:1-3:5" dir="auto">&#x000A;<p data-sourcepos="3:3-3:5">bar</p>&#x000A;</blockquote>
+ wysiwyg: |-
+ <blockquote multiline="false"><p>foo</p></blockquote>
+05_01__container_blocks__block_quotes__16:
+ canonical: |
+ <blockquote>
+ <p>foo
+ bar</p>
+ </blockquote>
+ static: |-
+ <blockquote data-sourcepos="1:1-2:5" dir="auto">&#x000A;<p data-sourcepos="1:3-2:5">foo&#x000A;bar</p>&#x000A;</blockquote>
+ wysiwyg: |-
+ <blockquote multiline="false"><p>foo
+ bar</p></blockquote>
+05_01__container_blocks__block_quotes__17:
+ canonical: |
+ <blockquote>
+ <p>foo</p>
+ <p>bar</p>
+ </blockquote>
+ static: |-
+ <blockquote data-sourcepos="1:1-3:5" dir="auto">&#x000A;<p data-sourcepos="1:3-1:5">foo</p>&#x000A;<p data-sourcepos="3:3-3:5">bar</p>&#x000A;</blockquote>
+ wysiwyg: |-
+ <blockquote multiline="false"><p>foo</p><p>bar</p></blockquote>
+05_01__container_blocks__block_quotes__18:
+ canonical: |
+ <p>foo</p>
+ <blockquote>
+ <p>bar</p>
+ </blockquote>
+ static: |-
+ <p data-sourcepos="1:1-1:3" dir="auto">foo</p>&#x000A;<blockquote data-sourcepos="2:1-2:5" dir="auto">&#x000A;<p data-sourcepos="2:3-2:5">bar</p>&#x000A;</blockquote>
+ wysiwyg: |-
+ <p>foo</p>
+05_01__container_blocks__block_quotes__19:
+ canonical: |
+ <blockquote>
+ <p>aaa</p>
+ </blockquote>
+ <hr />
+ <blockquote>
+ <p>bbb</p>
+ </blockquote>
+ static: |-
+ <blockquote data-sourcepos="1:1-1:5" dir="auto">&#x000A;<p data-sourcepos="1:3-1:5">aaa</p>&#x000A;</blockquote>&#x000A;<hr data-sourcepos="2:1-2:3">&#x000A;<blockquote data-sourcepos="3:1-3:5" dir="auto">&#x000A;<p data-sourcepos="3:3-3:5">bbb</p>&#x000A;</blockquote>
+ wysiwyg: |-
+ <blockquote multiline="false"><p>aaa</p></blockquote>
+05_01__container_blocks__block_quotes__20:
+ canonical: |
+ <blockquote>
+ <p>bar
+ baz</p>
+ </blockquote>
+ static: |-
+ <blockquote data-sourcepos="1:1-2:3" dir="auto">&#x000A;<p data-sourcepos="1:3-2:3">bar&#x000A;baz</p>&#x000A;</blockquote>
+ wysiwyg: |-
+ <blockquote multiline="false"><p>bar
+ baz</p></blockquote>
+05_01__container_blocks__block_quotes__21:
+ canonical: |
+ <blockquote>
+ <p>bar</p>
+ </blockquote>
+ <p>baz</p>
+ static: |-
+ <blockquote data-sourcepos="1:1-1:5" dir="auto">&#x000A;<p data-sourcepos="1:3-1:5">bar</p>&#x000A;</blockquote>&#x000A;<p data-sourcepos="3:1-3:3" dir="auto">baz</p>
+ wysiwyg: |-
+ <blockquote multiline="false"><p>bar</p></blockquote>
+05_01__container_blocks__block_quotes__22:
+ canonical: |
+ <blockquote>
+ <p>bar</p>
+ </blockquote>
+ <p>baz</p>
+ static: |-
+ <blockquote data-sourcepos="1:1-2:1" dir="auto">&#x000A;<p data-sourcepos="1:3-1:5">bar</p>&#x000A;</blockquote>&#x000A;<p data-sourcepos="3:1-3:3" dir="auto">baz</p>
+ wysiwyg: |-
+ <blockquote multiline="false"><p>bar</p></blockquote>
+05_01__container_blocks__block_quotes__23:
+ canonical: |
+ <blockquote>
+ <blockquote>
+ <blockquote>
+ <p>foo
+ bar</p>
+ </blockquote>
+ </blockquote>
+ </blockquote>
+ static: |-
+ <blockquote data-sourcepos="1:1-2:3" dir="auto">&#x000A;<blockquote data-sourcepos="1:3-2:3">&#x000A;<blockquote data-sourcepos="1:5-2:3">&#x000A;<p data-sourcepos="1:7-2:3">foo&#x000A;bar</p>&#x000A;</blockquote>&#x000A;</blockquote>&#x000A;</blockquote>
+ wysiwyg: |-
+ <blockquote multiline="false"><blockquote multiline="false"><blockquote multiline="false"><p>foo
+ bar</p></blockquote></blockquote></blockquote>
+05_01__container_blocks__block_quotes__24:
+ canonical: |
+ <blockquote>
+ <blockquote>
+ <blockquote>
+ <p>foo
+ bar
+ baz</p>
+ </blockquote>
+ </blockquote>
+ </blockquote>
+ static: |-
+ <blockquote data-sourcepos="1:1-3:5" dir="auto">&#x000A;<blockquote data-sourcepos="1:2-3:5">&#x000A;<blockquote data-sourcepos="1:3-3:5">&#x000A;<p data-sourcepos="1:5-3:5">foo&#x000A;bar&#x000A;baz</p>&#x000A;</blockquote>&#x000A;</blockquote>&#x000A;</blockquote>
+ wysiwyg: |-
+ <blockquote multiline="false"><blockquote multiline="false"><blockquote multiline="false"><p>foo
+ bar
+ baz</p></blockquote></blockquote></blockquote>
+05_01__container_blocks__block_quotes__25:
+ canonical: |
+ <blockquote>
+ <pre><code>code
+ </code></pre>
+ </blockquote>
+ <blockquote>
+ <p>not code</p>
+ </blockquote>
+ static: |-
+ <blockquote data-sourcepos="1:1-1:10" dir="auto">&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:7-1:10" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">code</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;</blockquote>&#x000A;<blockquote data-sourcepos="3:1-3:13" dir="auto">&#x000A;<p data-sourcepos="3:6-3:13">not code</p>&#x000A;</blockquote>
+ wysiwyg: |-
+ <blockquote multiline="false"><pre class="content-editor-code-block undefined code highlight"><code>code</code></pre></blockquote>
+05_02__container_blocks__list_items__01:
+ canonical: |
+ <p>A paragraph
+ with two lines.</p>
+ <pre><code>indented code
+ </code></pre>
+ <blockquote>
+ <p>A block quote.</p>
+ </blockquote>
+ static: |-
+ <p data-sourcepos="1:1-2:15" dir="auto">A paragraph&#x000A;with two lines.</p>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="4:5-5:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">indented code</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;<blockquote data-sourcepos="6:1-6:16" dir="auto">&#x000A;<p data-sourcepos="6:3-6:16">A block quote.</p>&#x000A;</blockquote>
+ wysiwyg: |-
+ <p>A paragraph
+ with two lines.</p>
+05_02__container_blocks__list_items__02:
+ canonical: |
+ <ol>
+ <li>
+ <p>A paragraph
+ with two lines.</p>
+ <pre><code>indented code
+ </code></pre>
+ <blockquote>
+ <p>A block quote.</p>
+ </blockquote>
+ </li>
+ </ol>
+ static: |-
+ <ol data-sourcepos="1:1-6:20" dir="auto">&#x000A;<li data-sourcepos="1:1-6:20">&#x000A;<p data-sourcepos="1:5-2:19">A paragraph&#x000A;with two lines.</p>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="4:9-5:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">indented code</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;<blockquote data-sourcepos="6:5-6:20">&#x000A;<p data-sourcepos="6:7-6:20">A block quote.</p>&#x000A;</blockquote>&#x000A;</li>&#x000A;</ol>
+ wysiwyg: |-
+ <ol parens="false"><li><p>A paragraph
+ with two lines.</p><pre class="content-editor-code-block undefined code highlight"><code>indented code</code></pre><blockquote multiline="false"><p>A block quote.</p></blockquote></li></ol>
+05_02__container_blocks__list_items__03:
+ canonical: |
+ <ul>
+ <li>one</li>
+ </ul>
+ <p>two</p>
+ static: |-
+ <ul data-sourcepos="1:1-2:0" dir="auto">&#x000A;<li data-sourcepos="1:1-2:0">one</li>&#x000A;</ul>&#x000A;<p data-sourcepos="3:2-3:4" dir="auto">two</p>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>one</p></li></ul>
+05_02__container_blocks__list_items__04:
+ canonical: |
+ <ul>
+ <li>
+ <p>one</p>
+ <p>two</p>
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-3:5" dir="auto">&#x000A;<li data-sourcepos="1:1-3:5">&#x000A;<p data-sourcepos="1:3-1:5">one</p>&#x000A;<p data-sourcepos="3:3-3:5">two</p>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>one</p><p>two</p></li></ul>
+05_02__container_blocks__list_items__05:
+ canonical: |
+ <ul>
+ <li>one</li>
+ </ul>
+ <pre><code> two
+ </code></pre>
+ static: |-
+ <ul data-sourcepos="1:2-2:0" dir="auto">&#x000A;<li data-sourcepos="1:2-2:0">one</li>&#x000A;</ul>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="3:5-3:8" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext"> two</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>one</p></li></ul>
+05_02__container_blocks__list_items__06:
+ canonical: |
+ <ul>
+ <li>
+ <p>one</p>
+ <p>two</p>
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:2-3:9" dir="auto">&#x000A;<li data-sourcepos="1:2-3:9">&#x000A;<p data-sourcepos="1:7-1:9">one</p>&#x000A;<p data-sourcepos="3:7-3:9">two</p>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>one</p><p>two</p></li></ul>
+05_02__container_blocks__list_items__07:
+ canonical: |
+ <blockquote>
+ <blockquote>
+ <ol>
+ <li>
+ <p>one</p>
+ <p>two</p>
+ </li>
+ </ol>
+ </blockquote>
+ </blockquote>
+ static: |-
+ <blockquote data-sourcepos="1:4-3:10" dir="auto">&#x000A;<blockquote data-sourcepos="1:6-3:10">&#x000A;<ol data-sourcepos="1:8-3:10">&#x000A;<li data-sourcepos="1:8-3:10">&#x000A;<p data-sourcepos="1:12-1:14">one</p>&#x000A;<p data-sourcepos="3:8-3:10">two</p>&#x000A;</li>&#x000A;</ol>&#x000A;</blockquote>&#x000A;</blockquote>
+ wysiwyg: |-
+ <blockquote multiline="false"><blockquote multiline="false"><ol parens="false"><li><p>one</p><p>two</p></li></ol></blockquote></blockquote>
+05_02__container_blocks__list_items__08:
+ canonical: |
+ <blockquote>
+ <blockquote>
+ <ul>
+ <li>one</li>
+ </ul>
+ <p>two</p>
+ </blockquote>
+ </blockquote>
+ static: |-
+ <blockquote data-sourcepos="1:1-3:10" dir="auto">&#x000A;<blockquote data-sourcepos="1:2-3:10">&#x000A;<ul data-sourcepos="1:3-2:2">&#x000A;<li data-sourcepos="1:3-2:2">one</li>&#x000A;</ul>&#x000A;<p data-sourcepos="3:8-3:10">two</p>&#x000A;</blockquote>&#x000A;</blockquote>
+ wysiwyg: |-
+ <blockquote multiline="false"><blockquote multiline="false"><ul bullet="*"><li><p>one</p></li></ul><p>two</p></blockquote></blockquote>
+05_02__container_blocks__list_items__09:
+ canonical: |
+ <p>-one</p>
+ <p>2.two</p>
+ static: |-
+ <p data-sourcepos="1:1-1:4" dir="auto">-one</p>&#x000A;<p data-sourcepos="3:1-3:5" dir="auto">2.two</p>
+ wysiwyg: |-
+ <p>-one</p>
+05_02__container_blocks__list_items__10:
+ canonical: |
+ <ul>
+ <li>
+ <p>foo</p>
+ <p>bar</p>
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-4:5" dir="auto">&#x000A;<li data-sourcepos="1:1-4:5">&#x000A;<p data-sourcepos="1:3-1:5">foo</p>&#x000A;<p data-sourcepos="4:3-4:5">bar</p>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>foo</p><p>bar</p></li></ul>
+05_02__container_blocks__list_items__11:
+ canonical: |
+ <ol>
+ <li>
+ <p>foo</p>
+ <pre><code>bar
+ </code></pre>
+ <p>baz</p>
+ <blockquote>
+ <p>bam</p>
+ </blockquote>
+ </li>
+ </ol>
+ static: |-
+ <ol data-sourcepos="1:1-9:9" dir="auto">&#x000A;<li data-sourcepos="1:1-9:9">&#x000A;<p data-sourcepos="1:5-1:7">foo</p>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="3:5-5:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">bar</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;<p data-sourcepos="7:5-7:7">baz</p>&#x000A;<blockquote data-sourcepos="9:5-9:9">&#x000A;<p data-sourcepos="9:7-9:9">bam</p>&#x000A;</blockquote>&#x000A;</li>&#x000A;</ol>
+ wysiwyg: |-
+ <ol parens="false"><li><p>foo</p><pre class="content-editor-code-block undefined code highlight"><code>bar</code></pre><p>baz</p><blockquote multiline="false"><p>bam</p></blockquote></li></ol>
+05_02__container_blocks__list_items__12:
+ canonical: |
+ <ul>
+ <li>
+ <p>Foo</p>
+ <pre><code>bar
+
+
+ baz
+ </code></pre>
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-6:9" dir="auto">&#x000A;<li data-sourcepos="1:1-6:9">&#x000A;<p data-sourcepos="1:3-1:5">Foo</p>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="3:7-6:9" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">bar</span>&#x000A;<span id="LC2" class="line" lang="plaintext"></span>&#x000A;<span id="LC3" class="line" lang="plaintext"></span>&#x000A;<span id="LC4" class="line" lang="plaintext">baz</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>Foo</p><pre class="content-editor-code-block undefined code highlight"><code>bar
+
+
+ baz</code></pre></li></ul>
+05_02__container_blocks__list_items__13:
+ canonical: |
+ <ol start="123456789">
+ <li>ok</li>
+ </ol>
+ static: |-
+ <ol start="123456789" data-sourcepos="1:1-1:13" dir="auto">&#x000A;<li data-sourcepos="1:1-1:13">ok</li>&#x000A;</ol>
+ wysiwyg: |-
+ <ol parens="false"><li><p>ok</p></li></ol>
+05_02__container_blocks__list_items__14:
+ canonical: |
+ <p>1234567890. not ok</p>
+ static: |-
+ <p data-sourcepos="1:1-1:18" dir="auto">1234567890. not ok</p>
+ wysiwyg: |-
+ <p>1234567890. not ok</p>
+05_02__container_blocks__list_items__15:
+ canonical: |
+ <ol start="0">
+ <li>ok</li>
+ </ol>
+ static: |-
+ <ol start="0" data-sourcepos="1:1-1:5" dir="auto">&#x000A;<li data-sourcepos="1:1-1:5">ok</li>&#x000A;</ol>
+ wysiwyg: |-
+ <ol parens="false"><li><p>ok</p></li></ol>
+05_02__container_blocks__list_items__16:
+ canonical: |
+ <ol start="3">
+ <li>ok</li>
+ </ol>
+ static: |-
+ <ol start="3" data-sourcepos="1:1-1:7" dir="auto">&#x000A;<li data-sourcepos="1:1-1:7">ok</li>&#x000A;</ol>
+ wysiwyg: |-
+ <ol parens="false"><li><p>ok</p></li></ol>
+05_02__container_blocks__list_items__17:
+ canonical: |
+ <p>-1. not ok</p>
+ static: |-
+ <p data-sourcepos="1:1-1:10" dir="auto">-1. not ok</p>
+ wysiwyg: |-
+ <p>-1. not ok</p>
+05_02__container_blocks__list_items__18:
+ canonical: |
+ <ul>
+ <li>
+ <p>foo</p>
+ <pre><code>bar
+ </code></pre>
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-3:9" dir="auto">&#x000A;<li data-sourcepos="1:1-3:9">&#x000A;<p data-sourcepos="1:3-1:5">foo</p>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="3:7-3:9" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">bar</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>foo</p><pre class="content-editor-code-block undefined code highlight"><code>bar</code></pre></li></ul>
+05_02__container_blocks__list_items__19:
+ canonical: |
+ <ol start="10">
+ <li>
+ <p>foo</p>
+ <pre><code>bar
+ </code></pre>
+ </li>
+ </ol>
+ static: |-
+ <ol start="10" data-sourcepos="1:3-3:14" dir="auto">&#x000A;<li data-sourcepos="1:3-3:14">&#x000A;<p data-sourcepos="1:8-1:10">foo</p>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="3:12-3:14" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">bar</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;</li>&#x000A;</ol>
+ wysiwyg: |-
+ <ol parens="false"><li><p>foo</p><pre class="content-editor-code-block undefined code highlight"><code>bar</code></pre></li></ol>
+05_02__container_blocks__list_items__20:
+ canonical: |
+ <pre><code>indented code
+ </code></pre>
+ <p>paragraph</p>
+ <pre><code>more code
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:5-2:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">indented code</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;<p data-sourcepos="3:1-3:9" dir="auto">paragraph</p>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="5:5-5:13" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">more code</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>indented code</code></pre>
+05_02__container_blocks__list_items__21:
+ canonical: |
+ <ol>
+ <li>
+ <pre><code>indented code
+ </code></pre>
+ <p>paragraph</p>
+ <pre><code>more code
+ </code></pre>
+ </li>
+ </ol>
+ static: |-
+ <ol data-sourcepos="1:1-5:16" dir="auto">&#x000A;<li data-sourcepos="1:1-5:16">&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:8-2:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">indented code</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;<p data-sourcepos="3:4-3:12">paragraph</p>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="5:8-5:16" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">more code</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;</li>&#x000A;</ol>
+ wysiwyg: |-
+ <ol parens="false"><li><p></p><pre class="content-editor-code-block undefined code highlight"><code>indented code</code></pre><p>paragraph</p><pre class="content-editor-code-block undefined code highlight"><code>more code</code></pre></li></ol>
+05_02__container_blocks__list_items__22:
+ canonical: |
+ <ol>
+ <li>
+ <pre><code> indented code
+ </code></pre>
+ <p>paragraph</p>
+ <pre><code>more code
+ </code></pre>
+ </li>
+ </ol>
+ static: |-
+ <ol data-sourcepos="1:1-5:16" dir="auto">&#x000A;<li data-sourcepos="1:1-5:16">&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:8-2:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext"> indented code</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;<p data-sourcepos="3:4-3:12">paragraph</p>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="5:8-5:16" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">more code</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;</li>&#x000A;</ol>
+ wysiwyg: |-
+ <ol parens="false"><li><p></p><pre class="content-editor-code-block undefined code highlight"><code> indented code</code></pre><p>paragraph</p><pre class="content-editor-code-block undefined code highlight"><code>more code</code></pre></li></ol>
+05_02__container_blocks__list_items__23:
+ canonical: |
+ <p>foo</p>
+ <p>bar</p>
+ static: |-
+ <p data-sourcepos="1:4-1:6" dir="auto">foo</p>&#x000A;<p data-sourcepos="3:1-3:3" dir="auto">bar</p>
+ wysiwyg: |-
+ <p>foo</p>
+05_02__container_blocks__list_items__24:
+ canonical: |
+ <ul>
+ <li>foo</li>
+ </ul>
+ <p>bar</p>
+ static: |-
+ <ul data-sourcepos="1:1-2:0" dir="auto">&#x000A;<li data-sourcepos="1:1-2:0">foo</li>&#x000A;</ul>&#x000A;<p data-sourcepos="3:3-3:5" dir="auto">bar</p>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>foo</p></li></ul>
+05_02__container_blocks__list_items__25:
+ canonical: |
+ <ul>
+ <li>
+ <p>foo</p>
+ <p>bar</p>
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-3:6" dir="auto">&#x000A;<li data-sourcepos="1:1-3:6">&#x000A;<p data-sourcepos="1:4-1:6">foo</p>&#x000A;<p data-sourcepos="3:4-3:6">bar</p>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>foo</p><p>bar</p></li></ul>
+05_02__container_blocks__list_items__26:
+ canonical: |
+ <ul>
+ <li>foo</li>
+ <li>
+ <pre><code>bar
+ </code></pre>
+ </li>
+ <li>
+ <pre><code>baz
+ </code></pre>
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-8:9" dir="auto">&#x000A;<li data-sourcepos="1:1-2:5">foo</li>&#x000A;<li data-sourcepos="3:1-6:5">&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="4:3-6:5" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">bar</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;</li>&#x000A;<li data-sourcepos="7:1-8:9">&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="8:7-8:9" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">baz</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>foo</p></li><li><p></p><pre class="content-editor-code-block undefined code highlight"><code>bar</code></pre></li><li><p></p><pre class="content-editor-code-block undefined code highlight"><code>baz</code></pre></li></ul>
+05_02__container_blocks__list_items__27:
+ canonical: |
+ <ul>
+ <li>foo</li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-2:5" dir="auto">&#x000A;<li data-sourcepos="1:1-2:5">foo</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>foo</p></li></ul>
+05_02__container_blocks__list_items__28:
+ canonical: |
+ <ul>
+ <li></li>
+ </ul>
+ <p>foo</p>
+ static: |-
+ <ul data-sourcepos="1:1-2:0" dir="auto">&#x000A;<li data-sourcepos="1:1-1:1">&#x000A;</li>&#x000A;</ul>&#x000A;<p data-sourcepos="3:3-3:5" dir="auto">foo</p>
+ wysiwyg: |-
+ <ul bullet="*"><li><p></p></li></ul>
+05_02__container_blocks__list_items__29:
+ canonical: |
+ <ul>
+ <li>foo</li>
+ <li></li>
+ <li>bar</li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-3:5" dir="auto">&#x000A;<li data-sourcepos="1:1-1:5">foo</li>&#x000A;<li data-sourcepos="2:1-2:1">&#x000A;</li>&#x000A;<li data-sourcepos="3:1-3:5">bar</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>foo</p></li><li><p></p></li><li><p>bar</p></li></ul>
+05_02__container_blocks__list_items__30:
+ canonical: |
+ <ul>
+ <li>foo</li>
+ <li></li>
+ <li>bar</li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-3:5" dir="auto">&#x000A;<li data-sourcepos="1:1-1:5">foo</li>&#x000A;<li data-sourcepos="2:1-2:4">&#x000A;</li>&#x000A;<li data-sourcepos="3:1-3:5">bar</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>foo</p></li><li><p></p></li><li><p>bar</p></li></ul>
+05_02__container_blocks__list_items__31:
+ canonical: |
+ <ol>
+ <li>foo</li>
+ <li></li>
+ <li>bar</li>
+ </ol>
+ static: |-
+ <ol data-sourcepos="1:1-3:6" dir="auto">&#x000A;<li data-sourcepos="1:1-1:6">foo</li>&#x000A;<li data-sourcepos="2:1-2:2">&#x000A;</li>&#x000A;<li data-sourcepos="3:1-3:6">bar</li>&#x000A;</ol>
+ wysiwyg: |-
+ <ol parens="false"><li><p>foo</p></li><li><p></p></li><li><p>bar</p></li></ol>
+05_02__container_blocks__list_items__32:
+ canonical: |
+ <ul>
+ <li></li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-1:1" dir="auto">&#x000A;<li data-sourcepos="1:1-1:1">&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p></p></li></ul>
+05_02__container_blocks__list_items__33:
+ canonical: |
+ <p>foo
+ *</p>
+ <p>foo
+ 1.</p>
+ static: |-
+ <p data-sourcepos="1:1-2:1" dir="auto">foo&#x000A;*</p>&#x000A;<p data-sourcepos="4:1-5:2" dir="auto">foo&#x000A;1.</p>
+ wysiwyg: |-
+ <p>foo
+ *</p>
+05_02__container_blocks__list_items__34:
+ canonical: |
+ <ol>
+ <li>
+ <p>A paragraph
+ with two lines.</p>
+ <pre><code>indented code
+ </code></pre>
+ <blockquote>
+ <p>A block quote.</p>
+ </blockquote>
+ </li>
+ </ol>
+ static: |-
+ <ol data-sourcepos="1:2-6:21" dir="auto">&#x000A;<li data-sourcepos="1:2-6:21">&#x000A;<p data-sourcepos="1:6-2:20">A paragraph&#x000A;with two lines.</p>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="4:10-5:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">indented code</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;<blockquote data-sourcepos="6:6-6:21">&#x000A;<p data-sourcepos="6:8-6:21">A block quote.</p>&#x000A;</blockquote>&#x000A;</li>&#x000A;</ol>
+ wysiwyg: |-
+ <ol parens="false"><li><p>A paragraph
+ with two lines.</p><pre class="content-editor-code-block undefined code highlight"><code>indented code</code></pre><blockquote multiline="false"><p>A block quote.</p></blockquote></li></ol>
+05_02__container_blocks__list_items__35:
+ canonical: |
+ <ol>
+ <li>
+ <p>A paragraph
+ with two lines.</p>
+ <pre><code>indented code
+ </code></pre>
+ <blockquote>
+ <p>A block quote.</p>
+ </blockquote>
+ </li>
+ </ol>
+ static: |-
+ <ol data-sourcepos="1:3-6:22" dir="auto">&#x000A;<li data-sourcepos="1:3-6:22">&#x000A;<p data-sourcepos="1:7-2:21">A paragraph&#x000A;with two lines.</p>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="4:11-5:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">indented code</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;<blockquote data-sourcepos="6:7-6:22">&#x000A;<p data-sourcepos="6:9-6:22">A block quote.</p>&#x000A;</blockquote>&#x000A;</li>&#x000A;</ol>
+ wysiwyg: |-
+ <ol parens="false"><li><p>A paragraph
+ with two lines.</p><pre class="content-editor-code-block undefined code highlight"><code>indented code</code></pre><blockquote multiline="false"><p>A block quote.</p></blockquote></li></ol>
+05_02__container_blocks__list_items__36:
+ canonical: |
+ <ol>
+ <li>
+ <p>A paragraph
+ with two lines.</p>
+ <pre><code>indented code
+ </code></pre>
+ <blockquote>
+ <p>A block quote.</p>
+ </blockquote>
+ </li>
+ </ol>
+ static: |-
+ <ol data-sourcepos="1:4-6:23" dir="auto">&#x000A;<li data-sourcepos="1:4-6:23">&#x000A;<p data-sourcepos="1:8-2:22">A paragraph&#x000A;with two lines.</p>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="4:12-5:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">indented code</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;<blockquote data-sourcepos="6:8-6:23">&#x000A;<p data-sourcepos="6:10-6:23">A block quote.</p>&#x000A;</blockquote>&#x000A;</li>&#x000A;</ol>
+ wysiwyg: |-
+ <ol parens="false"><li><p>A paragraph
+ with two lines.</p><pre class="content-editor-code-block undefined code highlight"><code>indented code</code></pre><blockquote multiline="false"><p>A block quote.</p></blockquote></li></ol>
+05_02__container_blocks__list_items__37:
+ canonical: |
+ <pre><code>1. A paragraph
+ with two lines.
+
+ indented code
+
+ &gt; A block quote.
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:5-6:24" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">1. A paragraph</span>&#x000A;<span id="LC2" class="line" lang="plaintext"> with two lines.</span>&#x000A;<span id="LC3" class="line" lang="plaintext"></span>&#x000A;<span id="LC4" class="line" lang="plaintext"> indented code</span>&#x000A;<span id="LC5" class="line" lang="plaintext"></span>&#x000A;<span id="LC6" class="line" lang="plaintext"> &gt; A block quote.</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>1. A paragraph
+ with two lines.
+
+ indented code
+
+ &gt; A block quote.</code></pre>
+05_02__container_blocks__list_items__38:
+ canonical: |
+ <ol>
+ <li>
+ <p>A paragraph
+ with two lines.</p>
+ <pre><code>indented code
+ </code></pre>
+ <blockquote>
+ <p>A block quote.</p>
+ </blockquote>
+ </li>
+ </ol>
+ static: |-
+ <ol data-sourcepos="1:3-6:22" dir="auto">&#x000A;<li data-sourcepos="1:3-6:22">&#x000A;<p data-sourcepos="1:7-2:15">A paragraph&#x000A;with two lines.</p>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="4:11-5:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">indented code</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;<blockquote data-sourcepos="6:7-6:22">&#x000A;<p data-sourcepos="6:9-6:22">A block quote.</p>&#x000A;</blockquote>&#x000A;</li>&#x000A;</ol>
+ wysiwyg: |-
+ <ol parens="false"><li><p>A paragraph
+ with two lines.</p><pre class="content-editor-code-block undefined code highlight"><code>indented code</code></pre><blockquote multiline="false"><p>A block quote.</p></blockquote></li></ol>
+05_02__container_blocks__list_items__39:
+ canonical: |
+ <ol>
+ <li>A paragraph
+ with two lines.</li>
+ </ol>
+ static: |-
+ <ol data-sourcepos="1:3-2:19" dir="auto">&#x000A;<li data-sourcepos="1:3-2:19">A paragraph&#x000A;with two lines.</li>&#x000A;</ol>
+ wysiwyg: |-
+ <ol parens="false"><li><p>A paragraph
+ with two lines.</p></li></ol>
+05_02__container_blocks__list_items__40:
+ canonical: |
+ <blockquote>
+ <ol>
+ <li>
+ <blockquote>
+ <p>Blockquote
+ continued here.</p>
+ </blockquote>
+ </li>
+ </ol>
+ </blockquote>
+ static: |-
+ <blockquote data-sourcepos="1:1-2:15" dir="auto">&#x000A;<ol data-sourcepos="1:3-2:15">&#x000A;<li data-sourcepos="1:3-2:15">&#x000A;<blockquote data-sourcepos="1:6-2:15">&#x000A;<p data-sourcepos="1:8-2:15">Blockquote&#x000A;continued here.</p>&#x000A;</blockquote>&#x000A;</li>&#x000A;</ol>&#x000A;</blockquote>
+ wysiwyg: |-
+ <blockquote multiline="false"><ol parens="false"><li><p></p><blockquote multiline="false"><p>Blockquote
+ continued here.</p></blockquote></li></ol></blockquote>
+05_02__container_blocks__list_items__41:
+ canonical: |
+ <blockquote>
+ <ol>
+ <li>
+ <blockquote>
+ <p>Blockquote
+ continued here.</p>
+ </blockquote>
+ </li>
+ </ol>
+ </blockquote>
+ static: |-
+ <blockquote data-sourcepos="1:1-2:17" dir="auto">&#x000A;<ol data-sourcepos="1:3-2:17">&#x000A;<li data-sourcepos="1:3-2:17">&#x000A;<blockquote data-sourcepos="1:6-2:17">&#x000A;<p data-sourcepos="1:8-2:17">Blockquote&#x000A;continued here.</p>&#x000A;</blockquote>&#x000A;</li>&#x000A;</ol>&#x000A;</blockquote>
+ wysiwyg: |-
+ <blockquote multiline="false"><ol parens="false"><li><p></p><blockquote multiline="false"><p>Blockquote
+ continued here.</p></blockquote></li></ol></blockquote>
+05_02__container_blocks__list_items__42:
+ canonical: |
+ <ul>
+ <li>foo
+ <ul>
+ <li>bar
+ <ul>
+ <li>baz
+ <ul>
+ <li>boo</li>
+ </ul>
+ </li>
+ </ul>
+ </li>
+ </ul>
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-4:11" dir="auto">&#x000A;<li data-sourcepos="1:1-4:11">foo&#x000A;<ul data-sourcepos="2:3-4:11">&#x000A;<li data-sourcepos="2:3-4:11">bar&#x000A;<ul data-sourcepos="3:5-4:11">&#x000A;<li data-sourcepos="3:5-4:11">baz&#x000A;<ul data-sourcepos="4:7-4:11">&#x000A;<li data-sourcepos="4:7-4:11">boo</li>&#x000A;</ul>&#x000A;</li>&#x000A;</ul>&#x000A;</li>&#x000A;</ul>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>foo
+ </p><ul bullet="*"><li><p>bar
+ </p><ul bullet="*"><li><p>baz
+ </p><ul bullet="*"><li><p>boo</p></li></ul></li></ul></li></ul></li></ul>
+05_02__container_blocks__list_items__43:
+ canonical: |
+ <ul>
+ <li>foo</li>
+ <li>bar</li>
+ <li>baz</li>
+ <li>boo</li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-4:8" dir="auto">&#x000A;<li data-sourcepos="1:1-1:5">foo</li>&#x000A;<li data-sourcepos="2:2-2:6">bar</li>&#x000A;<li data-sourcepos="3:3-3:7">baz</li>&#x000A;<li data-sourcepos="4:4-4:8">boo</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>foo</p></li><li><p>bar</p></li><li><p>baz</p></li><li><p>boo</p></li></ul>
+05_02__container_blocks__list_items__44:
+ canonical: |
+ <ol start="10">
+ <li>foo
+ <ul>
+ <li>bar</li>
+ </ul>
+ </li>
+ </ol>
+ static: |-
+ <ol start="10" data-sourcepos="1:1-2:9" dir="auto">&#x000A;<li data-sourcepos="1:1-2:9">foo&#x000A;<ul data-sourcepos="2:5-2:9">&#x000A;<li data-sourcepos="2:5-2:9">bar</li>&#x000A;</ul>&#x000A;</li>&#x000A;</ol>
+ wysiwyg: |-
+ <ol parens="false"><li><p>foo
+ </p><ul bullet="*"><li><p>bar</p></li></ul></li></ol>
+05_02__container_blocks__list_items__45:
+ canonical: |
+ <ol start="10">
+ <li>foo</li>
+ </ol>
+ <ul>
+ <li>bar</li>
+ </ul>
+ static: |-
+ <ol start="10" data-sourcepos="1:1-1:7" dir="auto">&#x000A;<li data-sourcepos="1:1-1:7">foo</li>&#x000A;</ol>&#x000A;<ul data-sourcepos="2:4-2:8" dir="auto">&#x000A;<li data-sourcepos="2:4-2:8">bar</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ol parens="false"><li><p>foo</p></li></ol>
+05_02__container_blocks__list_items__46:
+ canonical: |
+ <ul>
+ <li>
+ <ul>
+ <li>foo</li>
+ </ul>
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-1:7" dir="auto">&#x000A;<li data-sourcepos="1:1-1:7">&#x000A;<ul data-sourcepos="1:3-1:7">&#x000A;<li data-sourcepos="1:3-1:7">foo</li>&#x000A;</ul>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p></p><ul bullet="*"><li><p>foo</p></li></ul></li></ul>
+05_02__container_blocks__list_items__47:
+ canonical: |
+ <ol>
+ <li>
+ <ul>
+ <li>
+ <ol start="2">
+ <li>foo</li>
+ </ol>
+ </li>
+ </ul>
+ </li>
+ </ol>
+ static: |-
+ <ol data-sourcepos="1:1-1:11" dir="auto">&#x000A;<li data-sourcepos="1:1-1:11">&#x000A;<ul data-sourcepos="1:4-1:11">&#x000A;<li data-sourcepos="1:4-1:11">&#x000A;<ol start="2" data-sourcepos="1:6-1:11">&#x000A;<li data-sourcepos="1:6-1:11">foo</li>&#x000A;</ol>&#x000A;</li>&#x000A;</ul>&#x000A;</li>&#x000A;</ol>
+ wysiwyg: |-
+ <ol parens="false"><li><p></p><ul bullet="*"><li><p></p><ol parens="false"><li><p>foo</p></li></ol></li></ul></li></ol>
+05_02__container_blocks__list_items__48:
+ canonical: |
+ <ul>
+ <li>
+ <h1>Foo</h1>
+ </li>
+ <li>
+ <h2>Bar</h2>
+ baz</li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-4:5" dir="auto">&#x000A;<li data-sourcepos="1:1-1:7">&#x000A;<h1 data-sourcepos="1:3-1:7">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>Foo</h1>&#x000A;</li>&#x000A;<li data-sourcepos="2:1-4:5">&#x000A;<h2 data-sourcepos="2:3-4:5">&#x000A;<a id="user-content-bar" class="anchor" href="#bar" aria-hidden="true"></a>Bar</h2>&#x000A;baz</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p></p><h1>Foo</h1></li><li><p></p><h2>Bar
+ baz</h2></li></ul>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__49:
+ canonical: |
+ <ul>
+ <li><input disabled="" type="checkbox"> foo</li>
+ <li><input checked="" disabled="" type="checkbox"> bar</li>
+ </ul>
+ <ul>
+ <li><input checked="" disabled="" type="checkbox"> foo
+ <ul>
+ <li><input disabled="" type="checkbox"> bar</li>
+ <li><input checked="" disabled="" type="checkbox"> baz</li>
+ </ul>
+ </li>
+ <li><input disabled="" type="checkbox"> bim</li>
+ </ul>
+ <ul>
+ <li>foo</li>
+ <li>bar</li>
+ </ul>
+ <ul>
+ <li>baz</li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-8:5" class="task-list" dir="auto">&#x000A;<li data-sourcepos="1:1-1:9" class="task-list-item">&#x000A;<task-button></task-button><input type="checkbox" class="task-list-item-checkbox" disabled> foo</li>&#x000A;<li data-sourcepos="2:1-2:9" class="task-list-item">&#x000A;<task-button></task-button><input type="checkbox" class="task-list-item-checkbox" checked disabled> bar</li>&#x000A;<li data-sourcepos="3:1-5:11" class="task-list-item">&#x000A;<task-button></task-button><input type="checkbox" class="task-list-item-checkbox" checked disabled> foo&#x000A;<ul data-sourcepos="4:3-5:11" class="task-list">&#x000A;<li data-sourcepos="4:3-4:11" class="task-list-item">&#x000A;<task-button></task-button><input type="checkbox" class="task-list-item-checkbox" disabled> bar</li>&#x000A;<li data-sourcepos="5:3-5:11" class="task-list-item">&#x000A;<task-button></task-button><input type="checkbox" class="task-list-item-checkbox" checked disabled> baz</li>&#x000A;</ul>&#x000A;</li>&#x000A;<li data-sourcepos="6:1-6:9" class="task-list-item">&#x000A;<task-button></task-button><input type="checkbox" class="task-list-item-checkbox" disabled> bim</li>&#x000A;<li data-sourcepos="7:1-7:5">foo</li>&#x000A;<li data-sourcepos="8:1-8:5">bar</li>&#x000A;</ul>&#x000A;<ul data-sourcepos="9:1-9:5" dir="auto">&#x000A;<li data-sourcepos="9:1-9:5">baz</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>[ ] foo</p></li><li><p>[x] bar</p></li><li><p>[x] foo
+ </p><ul bullet="*"><li><p>[ ] bar</p></li><li><p>[x] baz</p></li></ul></li><li><p>[ ] bim</p></li><li><p>foo</p></li><li><p>bar</p></li></ul>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__50:
+ canonical: |
+ <ol>
+ <li>foo</li>
+ <li>bar</li>
+ </ol>
+ <ol start="3">
+ <li>baz</li>
+ </ol>
+ static: |-
+ <ol data-sourcepos="1:1-2:6" dir="auto">&#x000A;<li data-sourcepos="1:1-1:6">foo</li>&#x000A;<li data-sourcepos="2:1-2:6">bar</li>&#x000A;</ol>&#x000A;<ol start="3" data-sourcepos="3:1-3:6" dir="auto">&#x000A;<li data-sourcepos="3:1-3:6">baz</li>&#x000A;</ol>
+ wysiwyg: |-
+ <ol parens="false"><li><p>foo</p></li><li><p>bar</p></li></ol>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__51:
+ canonical: |
+ <p>Foo</p>
+ <ul>
+ <li>bar</li>
+ <li>baz</li>
+ </ul>
+ static: |-
+ <p data-sourcepos="1:1-1:3" dir="auto">Foo</p>&#x000A;<ul data-sourcepos="2:1-3:5" dir="auto">&#x000A;<li data-sourcepos="2:1-2:5">bar</li>&#x000A;<li data-sourcepos="3:1-3:5">baz</li>&#x000A;</ul>
+ wysiwyg: |-
+ <p>Foo</p>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__52:
+ canonical: |
+ <p>The number of windows in my house is
+ 14. The number of doors is 6.</p>
+ static: |-
+ <p data-sourcepos="1:1-2:30" dir="auto">The number of windows in my house is&#x000A;14. The number of doors is 6.</p>
+ wysiwyg: |-
+ <p>The number of windows in my house is
+ 14. The number of doors is 6.</p>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__53:
+ canonical: |
+ <p>The number of windows in my house is</p>
+ <ol>
+ <li>The number of doors is 6.</li>
+ </ol>
+ static: |-
+ <p data-sourcepos="1:1-1:36" dir="auto">The number of windows in my house is</p>&#x000A;<ol data-sourcepos="2:1-2:29" dir="auto">&#x000A;<li data-sourcepos="2:1-2:29">The number of doors is 6.</li>&#x000A;</ol>
+ wysiwyg: |-
+ <p>The number of windows in my house is</p>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__54:
+ canonical: |
+ <ul>
+ <li>
+ <p>foo</p>
+ </li>
+ <li>
+ <p>bar</p>
+ </li>
+ <li>
+ <p>baz</p>
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-6:5" dir="auto">&#x000A;<li data-sourcepos="1:1-2:0">&#x000A;<p data-sourcepos="1:3-1:5">foo</p>&#x000A;</li>&#x000A;<li data-sourcepos="3:1-5:0">&#x000A;<p data-sourcepos="3:3-3:5">bar</p>&#x000A;</li>&#x000A;<li data-sourcepos="6:1-6:5">&#x000A;<p data-sourcepos="6:3-6:5">baz</p>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>foo</p></li><li><p>bar</p></li><li><p>baz</p></li></ul>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__55:
+ canonical: |
+ <ul>
+ <li>foo
+ <ul>
+ <li>bar
+ <ul>
+ <li>
+ <p>baz</p>
+ <p>bim</p>
+ </li>
+ </ul>
+ </li>
+ </ul>
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-6:9" dir="auto">&#x000A;<li data-sourcepos="1:1-6:9">foo&#x000A;<ul data-sourcepos="2:3-6:9">&#x000A;<li data-sourcepos="2:3-6:9">bar&#x000A;<ul data-sourcepos="3:5-6:9">&#x000A;<li data-sourcepos="3:5-6:9">&#x000A;<p data-sourcepos="3:7-3:9">baz</p>&#x000A;<p data-sourcepos="6:7-6:9">bim</p>&#x000A;</li>&#x000A;</ul>&#x000A;</li>&#x000A;</ul>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>foo
+ </p><ul bullet="*"><li><p>bar
+ </p><ul bullet="*"><li><p>baz</p><p>bim</p></li></ul></li></ul></li></ul>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__56:
+ canonical: |
+ <ul>
+ <li>foo</li>
+ <li>bar</li>
+ </ul>
+ <!-- -->
+ <ul>
+ <li>baz</li>
+ <li>bim</li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-3:0" dir="auto">&#x000A;<li data-sourcepos="1:1-1:5">foo</li>&#x000A;<li data-sourcepos="2:1-3:0">bar</li>&#x000A;</ul>&#x000A;&#x000A;<ul data-sourcepos="6:1-7:5" dir="auto">&#x000A;<li data-sourcepos="6:1-6:5">baz</li>&#x000A;<li data-sourcepos="7:1-7:5">bim</li>&#x000A;</ul>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "comment" not supported by this converter. Please, provide an specification.
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__57:
+ canonical: |
+ <ul>
+ <li>
+ <p>foo</p>
+ <p>notcode</p>
+ </li>
+ <li>
+ <p>foo</p>
+ </li>
+ </ul>
+ <!-- -->
+ <pre><code>code
+ </code></pre>
+ static: |-
+ <ul data-sourcepos="1:1-6:0" dir="auto">&#x000A;<li data-sourcepos="1:1-4:0">&#x000A;<p data-sourcepos="1:5-1:7">foo</p>&#x000A;<p data-sourcepos="3:5-3:11">notcode</p>&#x000A;</li>&#x000A;<li data-sourcepos="5:1-6:0">&#x000A;<p data-sourcepos="5:5-5:7">foo</p>&#x000A;</li>&#x000A;</ul>&#x000A;&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="9:5-9:8" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">code</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "comment" not supported by this converter. Please, provide an specification.
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__58:
+ canonical: |
+ <ul>
+ <li>a</li>
+ <li>b</li>
+ <li>c</li>
+ <li>d</li>
+ <li>e</li>
+ <li>f</li>
+ <li>g</li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-7:3" dir="auto">&#x000A;<li data-sourcepos="1:1-1:3">a</li>&#x000A;<li data-sourcepos="2:2-2:4">b</li>&#x000A;<li data-sourcepos="3:3-3:5">c</li>&#x000A;<li data-sourcepos="4:4-4:6">d</li>&#x000A;<li data-sourcepos="5:3-5:5">e</li>&#x000A;<li data-sourcepos="6:2-6:4">f</li>&#x000A;<li data-sourcepos="7:1-7:3">g</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>a</p></li><li><p>b</p></li><li><p>c</p></li><li><p>d</p></li><li><p>e</p></li><li><p>f</p></li><li><p>g</p></li></ul>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__59:
+ canonical: |
+ <ol>
+ <li>
+ <p>a</p>
+ </li>
+ <li>
+ <p>b</p>
+ </li>
+ <li>
+ <p>c</p>
+ </li>
+ </ol>
+ static: |-
+ <ol data-sourcepos="1:1-5:7" dir="auto">&#x000A;<li data-sourcepos="1:1-2:0">&#x000A;<p data-sourcepos="1:4-1:4">a</p>&#x000A;</li>&#x000A;<li data-sourcepos="3:3-4:0">&#x000A;<p data-sourcepos="3:6-3:6">b</p>&#x000A;</li>&#x000A;<li data-sourcepos="5:4-5:7">&#x000A;<p data-sourcepos="5:7-5:7">c</p>&#x000A;</li>&#x000A;</ol>
+ wysiwyg: |-
+ <ol parens="false"><li><p>a</p></li><li><p>b</p></li><li><p>c</p></li></ol>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__60:
+ canonical: |
+ <ul>
+ <li>a</li>
+ <li>b</li>
+ <li>c</li>
+ <li>d
+ - e</li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-5:7" dir="auto">&#x000A;<li data-sourcepos="1:1-1:3">a</li>&#x000A;<li data-sourcepos="2:2-2:4">b</li>&#x000A;<li data-sourcepos="3:3-3:5">c</li>&#x000A;<li data-sourcepos="4:4-5:7">d&#x000A;- e</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>a</p></li><li><p>b</p></li><li><p>c</p></li><li><p>d
+ - e</p></li></ul>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__61:
+ canonical: |
+ <ol>
+ <li>
+ <p>a</p>
+ </li>
+ <li>
+ <p>b</p>
+ </li>
+ </ol>
+ <pre><code>3. c
+ </code></pre>
+ static: |-
+ <ol data-sourcepos="1:1-4:0" dir="auto">&#x000A;<li data-sourcepos="1:1-2:0">&#x000A;<p data-sourcepos="1:4-1:4">a</p>&#x000A;</li>&#x000A;<li data-sourcepos="3:3-4:0">&#x000A;<p data-sourcepos="3:6-3:6">b</p>&#x000A;</li>&#x000A;</ol>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="5:5-5:8" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">3. c</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <ol parens="false"><li><p>a</p></li><li><p>b</p></li></ol>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__62:
+ canonical: |
+ <ul>
+ <li>
+ <p>a</p>
+ </li>
+ <li>
+ <p>b</p>
+ </li>
+ <li>
+ <p>c</p>
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-4:3" dir="auto">&#x000A;<li data-sourcepos="1:1-1:3">&#x000A;<p data-sourcepos="1:3-1:3">a</p>&#x000A;</li>&#x000A;<li data-sourcepos="2:1-3:0">&#x000A;<p data-sourcepos="2:3-2:3">b</p>&#x000A;</li>&#x000A;<li data-sourcepos="4:1-4:3">&#x000A;<p data-sourcepos="4:3-4:3">c</p>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>a</p></li><li><p>b</p></li><li><p>c</p></li></ul>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__63:
+ canonical: |
+ <ul>
+ <li>
+ <p>a</p>
+ </li>
+ <li></li>
+ <li>
+ <p>c</p>
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-4:3" dir="auto">&#x000A;<li data-sourcepos="1:1-1:3">&#x000A;<p data-sourcepos="1:3-1:3">a</p>&#x000A;</li>&#x000A;<li data-sourcepos="2:1-2:1">&#x000A;</li>&#x000A;<li data-sourcepos="4:1-4:3">&#x000A;<p data-sourcepos="4:3-4:3">c</p>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>a</p></li><li><p></p></li><li><p>c</p></li></ul>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__64:
+ canonical: |
+ <ul>
+ <li>
+ <p>a</p>
+ </li>
+ <li>
+ <p>b</p>
+ <p>c</p>
+ </li>
+ <li>
+ <p>d</p>
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-5:3" dir="auto">&#x000A;<li data-sourcepos="1:1-1:3">&#x000A;<p data-sourcepos="1:3-1:3">a</p>&#x000A;</li>&#x000A;<li data-sourcepos="2:1-4:3">&#x000A;<p data-sourcepos="2:3-2:3">b</p>&#x000A;<p data-sourcepos="4:3-4:3">c</p>&#x000A;</li>&#x000A;<li data-sourcepos="5:1-5:3">&#x000A;<p data-sourcepos="5:3-5:3">d</p>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>a</p></li><li><p>b</p><p>c</p></li><li><p>d</p></li></ul>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__65:
+ canonical: |
+ <ul>
+ <li>
+ <p>a</p>
+ </li>
+ <li>
+ <p>b</p>
+ </li>
+ <li>
+ <p>d</p>
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-5:3" dir="auto">&#x000A;<li data-sourcepos="1:1-1:3">&#x000A;<p data-sourcepos="1:3-1:3">a</p>&#x000A;</li>&#x000A;<li data-sourcepos="2:1-4:13">&#x000A;<p data-sourcepos="2:3-2:3">b</p>&#x000A;</li>&#x000A;<li data-sourcepos="5:1-5:3">&#x000A;<p data-sourcepos="5:3-5:3">d</p>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>a</p></li><li><p>b</p></li><li><p>d</p></li></ul>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__66:
+ canonical: |
+ <ul>
+ <li>a</li>
+ <li>
+ <pre><code>b
+
+
+ </code></pre>
+ </li>
+ <li>c</li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-7:3" dir="auto">&#x000A;<li data-sourcepos="1:1-1:3">a</li>&#x000A;<li data-sourcepos="2:1-6:5">&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="2:3-6:5" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">b</span>&#x000A;<span id="LC2" class="line" lang="plaintext"></span>&#x000A;<span id="LC3" class="line" lang="plaintext"></span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;</li>&#x000A;<li data-sourcepos="7:1-7:3">c</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>a</p></li><li><p></p><pre class="content-editor-code-block undefined code highlight"><code>b
+
+ </code></pre></li><li><p>c</p></li></ul>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__67:
+ canonical: |
+ <ul>
+ <li>a
+ <ul>
+ <li>
+ <p>b</p>
+ <p>c</p>
+ </li>
+ </ul>
+ </li>
+ <li>d</li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-5:3" dir="auto">&#x000A;<li data-sourcepos="1:1-4:5">a&#x000A;<ul data-sourcepos="2:3-4:5">&#x000A;<li data-sourcepos="2:3-4:5">&#x000A;<p data-sourcepos="2:5-2:5">b</p>&#x000A;<p data-sourcepos="4:5-4:5">c</p>&#x000A;</li>&#x000A;</ul>&#x000A;</li>&#x000A;<li data-sourcepos="5:1-5:3">d</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>a
+ </p><ul bullet="*"><li><p>b</p><p>c</p></li></ul></li><li><p>d</p></li></ul>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__68:
+ canonical: |
+ <ul>
+ <li>a
+ <blockquote>
+ <p>b</p>
+ </blockquote>
+ </li>
+ <li>c</li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-4:3" dir="auto">&#x000A;<li data-sourcepos="1:1-3:3">a&#x000A;<blockquote data-sourcepos="2:3-3:3">&#x000A;<p data-sourcepos="2:5-2:5">b</p>&#x000A;</blockquote>&#x000A;</li>&#x000A;<li data-sourcepos="4:1-4:3">c</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>a
+ </p><blockquote multiline="false"><p>b</p></blockquote></li><li><p>c</p></li></ul>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__69:
+ canonical: |
+ <ul>
+ <li>a
+ <blockquote>
+ <p>b</p>
+ </blockquote>
+ <pre><code>c
+ </code></pre>
+ </li>
+ <li>d</li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-6:3" dir="auto">&#x000A;<li data-sourcepos="1:1-5:5">a&#x000A;<blockquote data-sourcepos="2:3-2:5">&#x000A;<p data-sourcepos="2:5-2:5">b</p>&#x000A;</blockquote>&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="3:3-5:5" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">c</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;</li>&#x000A;<li data-sourcepos="6:1-6:3">d</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>a
+ </p><blockquote multiline="false"><p>b</p></blockquote><pre class="content-editor-code-block undefined code highlight"><code>c</code></pre></li><li><p>d</p></li></ul>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__70:
+ canonical: |
+ <ul>
+ <li>a</li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-1:3" dir="auto">&#x000A;<li data-sourcepos="1:1-1:3">a</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>a</p></li></ul>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__71:
+ canonical: |
+ <ul>
+ <li>a
+ <ul>
+ <li>b</li>
+ </ul>
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-2:5" dir="auto">&#x000A;<li data-sourcepos="1:1-2:5">a&#x000A;<ul data-sourcepos="2:3-2:5">&#x000A;<li data-sourcepos="2:3-2:5">b</li>&#x000A;</ul>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>a
+ </p><ul bullet="*"><li><p>b</p></li></ul></li></ul>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__72:
+ canonical: |
+ <ol>
+ <li>
+ <pre><code>foo
+ </code></pre>
+ <p>bar</p>
+ </li>
+ </ol>
+ static: |-
+ <ol data-sourcepos="1:1-5:6" dir="auto">&#x000A;<li data-sourcepos="1:1-5:6">&#x000A;<div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:4-3:6" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>&#x000A;<p data-sourcepos="5:4-5:6">bar</p>&#x000A;</li>&#x000A;</ol>
+ wysiwyg: |-
+ <ol parens="false"><li><p></p><pre class="content-editor-code-block undefined code highlight"><code>foo</code></pre><p>bar</p></li></ol>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__73:
+ canonical: |
+ <ul>
+ <li>
+ <p>foo</p>
+ <ul>
+ <li>bar</li>
+ </ul>
+ <p>baz</p>
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-4:5" dir="auto">&#x000A;<li data-sourcepos="1:1-4:5">&#x000A;<p data-sourcepos="1:3-1:5">foo</p>&#x000A;<ul data-sourcepos="2:3-3:0">&#x000A;<li data-sourcepos="2:3-3:0">bar</li>&#x000A;</ul>&#x000A;<p data-sourcepos="4:3-4:5">baz</p>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>foo</p><ul bullet="*"><li><p>bar</p></li></ul><p>baz</p></li></ul>
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__74:
+ canonical: |
+ <ul>
+ <li>
+ <p>a</p>
+ <ul>
+ <li>b</li>
+ <li>c</li>
+ </ul>
+ </li>
+ <li>
+ <p>d</p>
+ <ul>
+ <li>e</li>
+ <li>f</li>
+ </ul>
+ </li>
+ </ul>
+ static: |-
+ <ul data-sourcepos="1:1-7:5" dir="auto">&#x000A;<li data-sourcepos="1:1-4:0">&#x000A;<p data-sourcepos="1:3-1:3">a</p>&#x000A;<ul data-sourcepos="2:3-4:0">&#x000A;<li data-sourcepos="2:3-2:5">b</li>&#x000A;<li data-sourcepos="3:3-4:0">c</li>&#x000A;</ul>&#x000A;</li>&#x000A;<li data-sourcepos="5:1-7:5">&#x000A;<p data-sourcepos="5:3-5:3">d</p>&#x000A;<ul data-sourcepos="6:3-7:5">&#x000A;<li data-sourcepos="6:3-6:5">e</li>&#x000A;<li data-sourcepos="7:3-7:5">f</li>&#x000A;</ul>&#x000A;</li>&#x000A;</ul>
+ wysiwyg: |-
+ <ul bullet="*"><li><p>a</p><ul bullet="*"><li><p>b</p></li><li><p>c</p></li></ul></li><li><p>d</p><ul bullet="*"><li><p>e</p></li><li><p>f</p></li></ul></li></ul>
+06_01__inlines__01:
+ canonical: |
+ <p><code>hi</code>lo`</p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto"><code>hi</code>lo`</p>
+ wysiwyg: |-
+ <p><code>hi</code>lo`</p>
+06_02__inlines__backslash_escapes__01:
+ canonical: |
+ <p>!&quot;#$%&amp;'()*+,-./:;&lt;=&gt;?@[\]^_`{|}~</p>
+ static: |-
+ <p data-sourcepos="1:1-1:224" dir="auto"><span>!</span>"<span>#</span><span>$</span><span>%</span><span>&amp;</span>'()*+,-./:;&lt;=&gt;?<span>@</span>[\]<span>^</span>_`{|}<span>~</span></p>
+ wysiwyg: |-
+ <p>!"#$%&amp;'()*+,-./:;&lt;=&gt;?@[\]^_`{|}~</p>
+06_02__inlines__backslash_escapes__02:
+ canonical: "<p>\\\t\\A\\a\\ \\3\\φ\\«</p>\n"
+ static: "<p data-sourcepos=\"1:1-1:16\" dir=\"auto\">\\\t\\A\\a\\ \\3\\φ\\«</p>"
+ wysiwyg: "<p>\\\t\\A\\a\\ \\3\\φ\\«</p>"
+06_02__inlines__backslash_escapes__03:
+ canonical: |
+ <p>*not emphasized*
+ &lt;br/&gt; not a tag
+ [not a link](/foo)
+ `not code`
+ 1. not a list
+ * not a list
+ # not a heading
+ [foo]: /url &quot;not a reference&quot;
+ &amp;ouml; not a character entity</p>
+ static: |-
+ <p data-sourcepos="1:1-9:50" dir="auto">*not emphasized*&#x000A;&lt;br/&gt; not a tag&#x000A;<a href="/foo">not a link</a>&#x000A;`not code`&#x000A;1. not a list&#x000A;* not a list&#x000A;<span>#</span> not a heading&#x000A;[foo]: /url "not a reference"&#x000A;<span>&amp;</span>ouml; not a character entity</p>
+ wysiwyg: |-
+ <p>*not emphasized*
+ &lt;br/&gt; not a tag
+ [not a link](/foo)
+ `not code`
+ 1. not a list
+ * not a list
+ # not a heading
+ [foo]: /url "not a reference"
+ &amp;ouml; not a character entity</p>
+06_02__inlines__backslash_escapes__04:
+ canonical: |
+ <p>\<em>emphasis</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:12" dir="auto">\<em>emphasis</em></p>
+ wysiwyg: |-
+ <p>\<em>emphasis</em></p>
+06_02__inlines__backslash_escapes__05:
+ canonical: |
+ <p>foo<br />
+ bar</p>
+ static: |-
+ <p data-sourcepos="1:1-2:3" dir="auto">foo<br>&#x000A;bar</p>
+ wysiwyg: |-
+ <p>foo<br>
+ bar</p>
+06_02__inlines__backslash_escapes__06:
+ canonical: |
+ <p><code>\[\`</code></p>
+ static: |-
+ <p data-sourcepos="1:1-1:10" dir="auto"><code>\[\`</code></p>
+ wysiwyg: |-
+ <p><code>\[\`</code></p>
+06_02__inlines__backslash_escapes__07:
+ canonical: |
+ <pre><code>\[\]
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:5-1:8" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">\[\]</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>\[\]</code></pre>
+06_02__inlines__backslash_escapes__08:
+ canonical: |
+ <pre><code>\[\]
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-3:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">\[\]</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>\[\]</code></pre>
+06_02__inlines__backslash_escapes__09:
+ canonical: |
+ <p><a href="http://example.com?find=%5C*">http://example.com?find=\*</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:28" dir="auto"><a href="http://example.com?find=%5C*" rel="nofollow noreferrer noopener" target="_blank">http://example.com?find=\*</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="http://example.com?find=%5C*">http://example.com?find=\*</a></p>
+06_02__inlines__backslash_escapes__10:
+ canonical: |
+ <a href="/bar\/)">
+ static: |-
+ <a href="/bar%5C/)" rel="nofollow noreferrer noopener" target="_blank"></a>
+ wysiwyg: |-
+ <p></p>
+06_02__inlines__backslash_escapes__11:
+ canonical: |
+ <p><a href="/bar*" title="ti*tle">foo</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:23" dir="auto"><a href="/bar*" title="ti*tle">foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/bar*" title="ti*tle">foo</a></p>
+06_02__inlines__backslash_escapes__12:
+ canonical: |
+ <p><a href="/bar*" title="ti*tle">foo</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:5" dir="auto"><a href="/bar*" title="ti*tle">foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/bar*" title="ti*tle">foo</a></p>
+06_02__inlines__backslash_escapes__13:
+ canonical: |
+ <pre><code class="language-foo+bar">foo
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-3:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre language="foo+bar" class="content-editor-code-block undefined code highlight"><code>foo</code></pre>
+06_03__inlines__entity_and_numeric_character_references__01:
+ canonical: |
+ <p>  &amp; © Æ Ď
+ ¾ ℋ ⅆ
+ ∲ ≧̸</p>
+ static: |-
+ <p data-sourcepos="1:1-3:32" dir="auto">  &amp; © Æ Ď&#x000A;¾ ℋ ⅆ&#x000A;∲ ≧̸</p>
+ wysiwyg: |-
+ <p>&nbsp; &amp; © Æ Ď
+ ¾ ℋ ⅆ
+ ∲ ≧̸</p>
+06_03__inlines__entity_and_numeric_character_references__02:
+ canonical: |
+ <p># Ӓ Ϡ �</p>
+ static: |-
+ <p data-sourcepos="1:1-1:25" dir="auto"># Ӓ Ϡ �</p>
+ wysiwyg: |-
+ <p># Ӓ Ϡ �</p>
+06_03__inlines__entity_and_numeric_character_references__03:
+ canonical: |
+ <p>&quot; ആ ಫ</p>
+ static: |-
+ <p data-sourcepos="1:1-1:22" dir="auto">" ആ ಫ</p>
+ wysiwyg: |-
+ <p>" ആ ಫ</p>
+06_03__inlines__entity_and_numeric_character_references__04:
+ canonical: |
+ <p>&amp;nbsp &amp;x; &amp;#; &amp;#x;
+ &amp;#987654321;
+ &amp;#abcdef0;
+ &amp;ThisIsNotDefined; &amp;hi?;</p>
+ static: |-
+ <p data-sourcepos="1:1-4:24" dir="auto">&amp;nbsp &amp;x; &amp;#; &amp;#x;&#x000A;&amp;#987654321;&#x000A;&amp;#abcdef0;&#x000A;&amp;ThisIsNotDefined; &amp;hi?;</p>
+ wysiwyg: |-
+ <p>&amp;nbsp &amp;x; &amp;#; &amp;#x;
+ &amp;#987654321;
+ &amp;#abcdef0;
+ &amp;ThisIsNotDefined; &amp;hi?;</p>
+06_03__inlines__entity_and_numeric_character_references__05:
+ canonical: |
+ <p>&amp;copy</p>
+ static: |-
+ <p data-sourcepos="1:1-1:5" dir="auto">&amp;copy</p>
+ wysiwyg: |-
+ <p>&amp;copy</p>
+06_03__inlines__entity_and_numeric_character_references__06:
+ canonical: |
+ <p>&amp;MadeUpEntity;</p>
+ static: |-
+ <p data-sourcepos="1:1-1:14" dir="auto">&amp;MadeUpEntity;</p>
+ wysiwyg: |-
+ <p>&amp;MadeUpEntity;</p>
+06_03__inlines__entity_and_numeric_character_references__07:
+ canonical: |
+ <a href="&ouml;&ouml;.html">
+ static: |-
+ <a href="%C3%B6%C3%B6.html" rel="nofollow noreferrer noopener" target="_blank"></a>
+ wysiwyg: |-
+ <p></p>
+06_03__inlines__entity_and_numeric_character_references__08:
+ canonical: |
+ <p><a href="/f%C3%B6%C3%B6" title="föö">foo</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:37" dir="auto"><a href="/f%C3%B6%C3%B6" title="föö">foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/f%C3%B6%C3%B6" title="föö">foo</a></p>
+06_03__inlines__entity_and_numeric_character_references__09:
+ canonical: |
+ <p><a href="/f%C3%B6%C3%B6" title="föö">foo</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:5" dir="auto"><a href="/f%C3%B6%C3%B6" title="föö">foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/f%C3%B6%C3%B6" title="föö">foo</a></p>
+06_03__inlines__entity_and_numeric_character_references__10:
+ canonical: |
+ <pre><code class="language-föö">foo
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:1-3:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre language="föö" class="content-editor-code-block undefined code highlight"><code>foo</code></pre>
+06_03__inlines__entity_and_numeric_character_references__11:
+ canonical: |
+ <p><code>f&amp;ouml;&amp;ouml;</code></p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto"><code>f&amp;ouml;&amp;ouml;</code></p>
+ wysiwyg: |-
+ <p><code>f&amp;ouml;&amp;ouml;</code></p>
+06_03__inlines__entity_and_numeric_character_references__12:
+ canonical: |
+ <pre><code>f&amp;ouml;f&amp;ouml;
+ </code></pre>
+ static: |-
+ <div class="gl-relative markdown-code-block js-markdown-code">&#x000A;<pre data-sourcepos="1:5-1:18" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">f&amp;ouml;f&amp;ouml;</span></code></pre>&#x000A;<copy-code></copy-code>&#x000A;</div>
+ wysiwyg: |-
+ <pre class="content-editor-code-block undefined code highlight"><code>f&amp;ouml;f&amp;ouml;</code></pre>
+06_03__inlines__entity_and_numeric_character_references__13:
+ canonical: |
+ <p>*foo*
+ <em>foo</em></p>
+ static: |-
+ <p data-sourcepos="1:1-2:5" dir="auto">*foo*&#x000A;<em>foo</em></p>
+ wysiwyg: |-
+ <p>*foo*
+ <em>foo</em></p>
+06_03__inlines__entity_and_numeric_character_references__14:
+ canonical: |
+ <p>* foo</p>
+ <ul>
+ <li>foo</li>
+ </ul>
+ static: |-
+ <p data-sourcepos="1:1-1:9" dir="auto">* foo</p>&#x000A;<ul data-sourcepos="3:1-3:5" dir="auto">&#x000A;<li data-sourcepos="3:1-3:5">foo</li>&#x000A;</ul>
+ wysiwyg: |-
+ <p>* foo</p>
+06_03__inlines__entity_and_numeric_character_references__15:
+ canonical: |
+ <p>foo
+
+ bar</p>
+ static: |-
+ <p data-sourcepos="1:1-1:16" dir="auto">foo&#x000A;&#x000A;bar</p>
+ wysiwyg: |-
+ <p>foo
+
+ bar</p>
+06_03__inlines__entity_and_numeric_character_references__16:
+ canonical: "<p>\tfoo</p>\n"
+ static: "<p data-sourcepos=\"1:1-1:7\" dir=\"auto\">\tfoo</p>"
+ wysiwyg: "<p>\tfoo</p>"
+06_03__inlines__entity_and_numeric_character_references__17:
+ canonical: |
+ <p>[a](url &quot;tit&quot;)</p>
+ static: |-
+ <p data-sourcepos="1:1-1:24" dir="auto"><a href="url" title="tit">a</a></p>
+ wysiwyg: |-
+ <p>[a](url "tit")</p>
+06_04__inlines__code_spans__01:
+ canonical: |
+ <p><code>foo</code></p>
+ static: |-
+ <p data-sourcepos="1:1-1:5" dir="auto"><code>foo</code></p>
+ wysiwyg: |-
+ <p><code>foo</code></p>
+06_04__inlines__code_spans__02:
+ canonical: |
+ <p><code>foo ` bar</code></p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto"><code>foo ` bar</code></p>
+ wysiwyg: |-
+ <p><code>foo ` bar</code></p>
+06_04__inlines__code_spans__03:
+ canonical: |
+ <p><code>``</code></p>
+ static: |-
+ <p data-sourcepos="1:1-1:6" dir="auto"><code>``</code></p>
+ wysiwyg: |-
+ <p><code>``</code></p>
+06_04__inlines__code_spans__04:
+ canonical: |
+ <p><code> `` </code></p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto"><code> `` </code></p>
+ wysiwyg: |-
+ <p><code> `` </code></p>
+06_04__inlines__code_spans__05:
+ canonical: |
+ <p><code> a</code></p>
+ static: |-
+ <p data-sourcepos="1:1-1:4" dir="auto"><code> a</code></p>
+ wysiwyg: |-
+ <p><code> a</code></p>
+06_04__inlines__code_spans__06:
+ canonical: |
+ <p><code> b </code></p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto"><code> b </code></p>
+ wysiwyg: |-
+ <p><code>&nbsp;b&nbsp;</code></p>
+06_04__inlines__code_spans__07:
+ canonical: |
+ <p><code> </code>
+ <code> </code></p>
+ static: |-
+ <p data-sourcepos="1:1-2:4" dir="auto"><code> </code>&#x000A;<code> </code></p>
+ wysiwyg: |-
+ <p></p>
+06_04__inlines__code_spans__08:
+ canonical: |
+ <p><code>foo bar baz</code></p>
+ static: |-
+ <p data-sourcepos="1:1-5:2" dir="auto"><code>foo bar baz</code></p>
+ wysiwyg: |-
+ <p><code>foo bar baz</code></p>
+06_04__inlines__code_spans__09:
+ canonical: |
+ <p><code>foo </code></p>
+ static: |-
+ <p data-sourcepos="1:1-3:2" dir="auto"><code>foo </code></p>
+ wysiwyg: |-
+ <p><code>foo </code></p>
+06_04__inlines__code_spans__10:
+ canonical: |
+ <p><code>foo bar baz</code></p>
+ static: |-
+ <p data-sourcepos="1:1-2:4" dir="auto"><code>foo bar baz</code></p>
+ wysiwyg: |-
+ <p><code>foo bar baz</code></p>
+06_04__inlines__code_spans__11:
+ canonical: |
+ <p><code>foo\</code>bar`</p>
+ static: |-
+ <p data-sourcepos="1:1-1:10" dir="auto"><code>foo\</code>bar`</p>
+ wysiwyg: |-
+ <p><code>foo\</code>bar`</p>
+06_04__inlines__code_spans__12:
+ canonical: |
+ <p><code>foo`bar</code></p>
+ static: |-
+ <p data-sourcepos="1:1-1:11" dir="auto"><code>foo`bar</code></p>
+ wysiwyg: |-
+ <p><code>foo`bar</code></p>
+06_04__inlines__code_spans__13:
+ canonical: |
+ <p><code>foo `` bar</code></p>
+ static: |-
+ <p data-sourcepos="1:1-1:14" dir="auto"><code>foo `` bar</code></p>
+ wysiwyg: |-
+ <p><code>foo `` bar</code></p>
+06_04__inlines__code_spans__14:
+ canonical: |
+ <p>*foo<code>*</code></p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto">*foo<code>*</code></p>
+ wysiwyg: |-
+ <p>*foo<code>*</code></p>
+06_04__inlines__code_spans__15:
+ canonical: |
+ <p>[not a <code>link](/foo</code>)</p>
+ static: |-
+ <p data-sourcepos="1:1-1:20" dir="auto">[not a <code>link](/foo</code>)</p>
+ wysiwyg: |-
+ <p>[not a <code>link](/foo</code>)</p>
+06_04__inlines__code_spans__16:
+ canonical: |
+ <p><code>&lt;a href=&quot;</code>&quot;&gt;`</p>
+ static: |-
+ <p data-sourcepos="1:1-1:14" dir="auto"><code>&lt;a href="</code>"&gt;`</p>
+ wysiwyg: |-
+ <p><code>&lt;a href="</code>"&gt;`</p>
+06_04__inlines__code_spans__17:
+ canonical: |
+ <p><a href="`">`</p>
+ static: |-
+ <p data-sourcepos="1:1-1:13" dir="auto"><a href="%60" rel="nofollow noreferrer noopener" target="_blank">`</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="`">`</a></p>
+06_04__inlines__code_spans__18:
+ canonical: |
+ <p><code>&lt;http://foo.bar.</code>baz&gt;`</p>
+ static: |-
+ <p data-sourcepos="1:1-1:23" dir="auto"><code>&lt;http://foo.bar.</code>baz&gt;`</p>
+ wysiwyg: |-
+ <p><code>&lt;http://foo.bar.</code>baz&gt;`</p>
+06_04__inlines__code_spans__19:
+ canonical: |
+ <p><a href="http://foo.bar.%60baz">http://foo.bar.`baz</a>`</p>
+ static: |-
+ <p data-sourcepos="1:1-1:22" dir="auto"><a href="http://foo.bar.%60baz" rel="nofollow noreferrer noopener" target="_blank">http://foo.bar.`baz</a>`</p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="http://foo.bar.%60baz">http://foo.bar.`baz</a>`</p>
+06_04__inlines__code_spans__20:
+ canonical: |
+ <p>```foo``</p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto">```foo``</p>
+ wysiwyg: |-
+ <p>```foo``</p>
+06_04__inlines__code_spans__21:
+ canonical: |
+ <p>`foo</p>
+ static: |-
+ <p data-sourcepos="1:1-1:4" dir="auto">`foo</p>
+ wysiwyg: |-
+ <p>`foo</p>
+06_04__inlines__code_spans__22:
+ canonical: |
+ <p>`foo<code>bar</code></p>
+ static: |-
+ <p data-sourcepos="1:1-1:11" dir="auto">`foo<code>bar</code></p>
+ wysiwyg: |-
+ <p>`foo<code>bar</code></p>
+06_05__inlines__emphasis_and_strong_emphasis__01:
+ canonical: |
+ <p><em>foo bar</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:9" dir="auto"><em>foo bar</em></p>
+ wysiwyg: |-
+ <p><em>foo bar</em></p>
+06_05__inlines__emphasis_and_strong_emphasis__02:
+ canonical: |
+ <p>a * foo bar*</p>
+ static: |-
+ <p data-sourcepos="1:1-1:12" dir="auto">a * foo bar*</p>
+ wysiwyg: |-
+ <p>a * foo bar*</p>
+06_05__inlines__emphasis_and_strong_emphasis__03:
+ canonical: |
+ <p>a*&quot;foo&quot;*</p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto">a*"foo"*</p>
+ wysiwyg: |-
+ <p>a*"foo"*</p>
+06_05__inlines__emphasis_and_strong_emphasis__04:
+ canonical: |
+ <p>* a *</p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto">* a *</p>
+ wysiwyg: |-
+ <p>*&nbsp;a&nbsp;*</p>
+06_05__inlines__emphasis_and_strong_emphasis__05:
+ canonical: |
+ <p>foo<em>bar</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto">foo<em>bar</em></p>
+ wysiwyg: |-
+ <p>foo<em>bar</em></p>
+06_05__inlines__emphasis_and_strong_emphasis__06:
+ canonical: |
+ <p>5<em>6</em>78</p>
+ static: |-
+ <p data-sourcepos="1:1-1:6" dir="auto">5<em>6</em>78</p>
+ wysiwyg: |-
+ <p>5<em>6</em>78</p>
+06_05__inlines__emphasis_and_strong_emphasis__07:
+ canonical: |
+ <p><em>foo bar</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:9" dir="auto"><em>foo bar</em></p>
+ wysiwyg: |-
+ <p><em>foo bar</em></p>
+06_05__inlines__emphasis_and_strong_emphasis__08:
+ canonical: |
+ <p>_ foo bar_</p>
+ static: |-
+ <p data-sourcepos="1:1-1:10" dir="auto">_ foo bar_</p>
+ wysiwyg: |-
+ <p>_ foo bar_</p>
+06_05__inlines__emphasis_and_strong_emphasis__09:
+ canonical: |
+ <p>a_&quot;foo&quot;_</p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto">a_"foo"_</p>
+ wysiwyg: |-
+ <p>a_"foo"_</p>
+06_05__inlines__emphasis_and_strong_emphasis__10:
+ canonical: |
+ <p>foo_bar_</p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto">foo_bar_</p>
+ wysiwyg: |-
+ <p>foo_bar_</p>
+06_05__inlines__emphasis_and_strong_emphasis__11:
+ canonical: |
+ <p>5_6_78</p>
+ static: |-
+ <p data-sourcepos="1:1-1:6" dir="auto">5_6_78</p>
+ wysiwyg: |-
+ <p>5_6_78</p>
+06_05__inlines__emphasis_and_strong_emphasis__12:
+ canonical: |
+ <p>пристаням_стремятся_</p>
+ static: |-
+ <p data-sourcepos="1:1-1:38" dir="auto">пристаням_стремятся_</p>
+ wysiwyg: |-
+ <p>пристаням_стремятся_</p>
+06_05__inlines__emphasis_and_strong_emphasis__13:
+ canonical: |
+ <p>aa_&quot;bb&quot;_cc</p>
+ static: |-
+ <p data-sourcepos="1:1-1:10" dir="auto">aa_"bb"_cc</p>
+ wysiwyg: |-
+ <p>aa_"bb"_cc</p>
+06_05__inlines__emphasis_and_strong_emphasis__14:
+ canonical: |
+ <p>foo-<em>(bar)</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:11" dir="auto">foo-<em>(bar)</em></p>
+ wysiwyg: |-
+ <p>foo-<em>(bar)</em></p>
+06_05__inlines__emphasis_and_strong_emphasis__15:
+ canonical: |
+ <p>_foo*</p>
+ static: |-
+ <p data-sourcepos="1:1-1:5" dir="auto">_foo*</p>
+ wysiwyg: |-
+ <p>_foo*</p>
+06_05__inlines__emphasis_and_strong_emphasis__16:
+ canonical: |
+ <p>*foo bar *</p>
+ static: |-
+ <p data-sourcepos="1:1-1:10" dir="auto">*foo bar *</p>
+ wysiwyg: |-
+ <p>*foo bar *</p>
+06_05__inlines__emphasis_and_strong_emphasis__17:
+ canonical: |
+ <p>*foo bar
+ *</p>
+ static: |-
+ <p data-sourcepos="1:1-2:1" dir="auto">*foo bar&#x000A;*</p>
+ wysiwyg: |-
+ <p>*foo bar
+ *</p>
+06_05__inlines__emphasis_and_strong_emphasis__18:
+ canonical: |
+ <p>*(*foo)</p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto">*(*foo)</p>
+ wysiwyg: |-
+ <p>*(*foo)</p>
+06_05__inlines__emphasis_and_strong_emphasis__19:
+ canonical: |
+ <p><em>(<em>foo</em>)</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:9" dir="auto"><em>(<em>foo</em>)</em></p>
+ wysiwyg: |-
+ <p><em>(foo</em>)</p>
+06_05__inlines__emphasis_and_strong_emphasis__20:
+ canonical: |
+ <p><em>foo</em>bar</p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto"><em>foo</em>bar</p>
+ wysiwyg: |-
+ <p><em>foo</em>bar</p>
+06_05__inlines__emphasis_and_strong_emphasis__21:
+ canonical: |
+ <p>_foo bar _</p>
+ static: |-
+ <p data-sourcepos="1:1-1:10" dir="auto">_foo bar _</p>
+ wysiwyg: |-
+ <p>_foo bar _</p>
+06_05__inlines__emphasis_and_strong_emphasis__22:
+ canonical: |
+ <p>_(_foo)</p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto">_(_foo)</p>
+ wysiwyg: |-
+ <p>_(_foo)</p>
+06_05__inlines__emphasis_and_strong_emphasis__23:
+ canonical: |
+ <p><em>(<em>foo</em>)</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:9" dir="auto"><em>(<em>foo</em>)</em></p>
+ wysiwyg: |-
+ <p><em>(foo</em>)</p>
+06_05__inlines__emphasis_and_strong_emphasis__24:
+ canonical: |
+ <p>_foo_bar</p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto">_foo_bar</p>
+ wysiwyg: |-
+ <p>_foo_bar</p>
+06_05__inlines__emphasis_and_strong_emphasis__25:
+ canonical: |
+ <p>_пристаням_стремятся</p>
+ static: |-
+ <p data-sourcepos="1:1-1:38" dir="auto">_пристаням_стремятся</p>
+ wysiwyg: |-
+ <p>_пристаням_стремятся</p>
+06_05__inlines__emphasis_and_strong_emphasis__26:
+ canonical: |
+ <p><em>foo_bar_baz</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:13" dir="auto"><em>foo_bar_baz</em></p>
+ wysiwyg: |-
+ <p><em>foo_bar_baz</em></p>
+06_05__inlines__emphasis_and_strong_emphasis__27:
+ canonical: |
+ <p><em>(bar)</em>.</p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto"><em>(bar)</em>.</p>
+ wysiwyg: |-
+ <p><em>(bar)</em>.</p>
+06_05__inlines__emphasis_and_strong_emphasis__28:
+ canonical: |
+ <p><strong>foo bar</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:11" dir="auto"><strong>foo bar</strong></p>
+ wysiwyg: |-
+ <p><strong>foo bar</strong></p>
+06_05__inlines__emphasis_and_strong_emphasis__29:
+ canonical: |
+ <p>** foo bar**</p>
+ static: |-
+ <p data-sourcepos="1:1-1:12" dir="auto">** foo bar**</p>
+ wysiwyg: |-
+ <p>** foo bar**</p>
+06_05__inlines__emphasis_and_strong_emphasis__30:
+ canonical: |
+ <p>a**&quot;foo&quot;**</p>
+ static: |-
+ <p data-sourcepos="1:1-1:10" dir="auto">a**"foo"**</p>
+ wysiwyg: |-
+ <p>a**"foo"**</p>
+06_05__inlines__emphasis_and_strong_emphasis__31:
+ canonical: |
+ <p>foo<strong>bar</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:10" dir="auto">foo<strong>bar</strong></p>
+ wysiwyg: |-
+ <p>foo<strong>bar</strong></p>
+06_05__inlines__emphasis_and_strong_emphasis__32:
+ canonical: |
+ <p><strong>foo bar</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:11" dir="auto"><strong>foo bar</strong></p>
+ wysiwyg: |-
+ <p><strong>foo bar</strong></p>
+06_05__inlines__emphasis_and_strong_emphasis__33:
+ canonical: |
+ <p>__ foo bar__</p>
+ static: |-
+ <p data-sourcepos="1:1-1:12" dir="auto">__ foo bar__</p>
+ wysiwyg: |-
+ <p>__ foo bar__</p>
+06_05__inlines__emphasis_and_strong_emphasis__34:
+ canonical: |
+ <p>__
+ foo bar__</p>
+ static: |-
+ <p data-sourcepos="1:1-2:9" dir="auto">__&#x000A;foo bar__</p>
+ wysiwyg: |-
+ <p>__
+ foo bar__</p>
+06_05__inlines__emphasis_and_strong_emphasis__35:
+ canonical: |
+ <p>a__&quot;foo&quot;__</p>
+ static: |-
+ <p data-sourcepos="1:1-1:10" dir="auto">a__"foo"__</p>
+ wysiwyg: |-
+ <p>a__"foo"__</p>
+06_05__inlines__emphasis_and_strong_emphasis__36:
+ canonical: |
+ <p>foo__bar__</p>
+ static: |-
+ <p data-sourcepos="1:1-1:10" dir="auto">foo__bar__</p>
+ wysiwyg: |-
+ <p>foo__bar__</p>
+06_05__inlines__emphasis_and_strong_emphasis__37:
+ canonical: |
+ <p>5__6__78</p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto">5__6__78</p>
+ wysiwyg: |-
+ <p>5__6__78</p>
+06_05__inlines__emphasis_and_strong_emphasis__38:
+ canonical: |
+ <p>пристаням__стремятся__</p>
+ static: |-
+ <p data-sourcepos="1:1-1:40" dir="auto">пристаням__стремятся__</p>
+ wysiwyg: |-
+ <p>пристаням__стремятся__</p>
+06_05__inlines__emphasis_and_strong_emphasis__39:
+ canonical: |
+ <p><strong>foo, <strong>bar</strong>, baz</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:21" dir="auto"><strong>foo, <strong>bar</strong>, baz</strong></p>
+ wysiwyg: |-
+ <p><strong>foo, bar</strong>, baz</p>
+06_05__inlines__emphasis_and_strong_emphasis__40:
+ canonical: |
+ <p>foo-<strong>(bar)</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:13" dir="auto">foo-<strong>(bar)</strong></p>
+ wysiwyg: |-
+ <p>foo-<strong>(bar)</strong></p>
+06_05__inlines__emphasis_and_strong_emphasis__41:
+ canonical: |
+ <p>**foo bar **</p>
+ static: |-
+ <p data-sourcepos="1:1-1:12" dir="auto">**foo bar **</p>
+ wysiwyg: |-
+ <p>**foo bar **</p>
+06_05__inlines__emphasis_and_strong_emphasis__42:
+ canonical: |
+ <p>**(**foo)</p>
+ static: |-
+ <p data-sourcepos="1:1-1:9" dir="auto">**(**foo)</p>
+ wysiwyg: |-
+ <p>**(**foo)</p>
+06_05__inlines__emphasis_and_strong_emphasis__43:
+ canonical: |
+ <p><em>(<strong>foo</strong>)</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:11" dir="auto"><em>(<strong>foo</strong>)</em></p>
+ wysiwyg: |-
+ <p><em>(</em><strong>foo</strong>)</p>
+06_05__inlines__emphasis_and_strong_emphasis__44:
+ canonical: |
+ <p><strong>Gomphocarpus (<em>Gomphocarpus physocarpus</em>, syn.
+ <em>Asclepias physocarpa</em>)</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-2:25" dir="auto"><strong>Gomphocarpus (<em>Gomphocarpus physocarpus</em>, syn.&#x000A;<em>Asclepias physocarpa</em>)</strong></p>
+ wysiwyg: |-
+ <p><strong>Gomphocarpus (</strong><em>Gomphocarpus physocarpus</em>, syn.
+ <em>Asclepias physocarpa</em>)</p>
+06_05__inlines__emphasis_and_strong_emphasis__45:
+ canonical: |
+ <p><strong>foo &quot;<em>bar</em>&quot; foo</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:19" dir="auto"><strong>foo "<em>bar</em>" foo</strong></p>
+ wysiwyg: |-
+ <p><strong>foo "</strong><em>bar</em>" foo</p>
+06_05__inlines__emphasis_and_strong_emphasis__46:
+ canonical: |
+ <p><strong>foo</strong>bar</p>
+ static: |-
+ <p data-sourcepos="1:1-1:10" dir="auto"><strong>foo</strong>bar</p>
+ wysiwyg: |-
+ <p><strong>foo</strong>bar</p>
+06_05__inlines__emphasis_and_strong_emphasis__47:
+ canonical: |
+ <p>__foo bar __</p>
+ static: |-
+ <p data-sourcepos="1:1-1:12" dir="auto">__foo bar __</p>
+ wysiwyg: |-
+ <p>__foo bar __</p>
+06_05__inlines__emphasis_and_strong_emphasis__48:
+ canonical: |
+ <p>__(__foo)</p>
+ static: |-
+ <p data-sourcepos="1:1-1:9" dir="auto">__(__foo)</p>
+ wysiwyg: |-
+ <p>__(__foo)</p>
+06_05__inlines__emphasis_and_strong_emphasis__49:
+ canonical: |
+ <p><em>(<strong>foo</strong>)</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:11" dir="auto"><em>(<strong>foo</strong>)</em></p>
+ wysiwyg: |-
+ <p><em>(</em><strong>foo</strong>)</p>
+06_05__inlines__emphasis_and_strong_emphasis__50:
+ canonical: |
+ <p>__foo__bar</p>
+ static: |-
+ <p data-sourcepos="1:1-1:10" dir="auto">__foo__bar</p>
+ wysiwyg: |-
+ <p>__foo__bar</p>
+06_05__inlines__emphasis_and_strong_emphasis__51:
+ canonical: |
+ <p>__пристаням__стремятся</p>
+ static: |-
+ <p data-sourcepos="1:1-1:40" dir="auto">__пристаням__стремятся</p>
+ wysiwyg: |-
+ <p>__пристаням__стремятся</p>
+06_05__inlines__emphasis_and_strong_emphasis__52:
+ canonical: |
+ <p><strong>foo__bar__baz</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:17" dir="auto"><strong>foo__bar__baz</strong></p>
+ wysiwyg: |-
+ <p><strong>foo__bar__baz</strong></p>
+06_05__inlines__emphasis_and_strong_emphasis__53:
+ canonical: |
+ <p><strong>(bar)</strong>.</p>
+ static: |-
+ <p data-sourcepos="1:1-1:10" dir="auto"><strong>(bar)</strong>.</p>
+ wysiwyg: |-
+ <p><strong>(bar)</strong>.</p>
+06_05__inlines__emphasis_and_strong_emphasis__54:
+ canonical: |
+ <p><em>foo <a href="/url">bar</a></em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:17" dir="auto"><em>foo <a href="/url">bar</a></em></p>
+ wysiwyg: |-
+ <p><em>foo </em><a target="_blank" rel="noopener noreferrer nofollow" href="/url">bar</a></p>
+06_05__inlines__emphasis_and_strong_emphasis__55:
+ canonical: |
+ <p><em>foo
+ bar</em></p>
+ static: |-
+ <p data-sourcepos="1:1-2:4" dir="auto"><em>foo&#x000A;bar</em></p>
+ wysiwyg: |-
+ <p><em>foo
+ bar</em></p>
+06_05__inlines__emphasis_and_strong_emphasis__56:
+ canonical: |
+ <p><em>foo <strong>bar</strong> baz</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:17" dir="auto"><em>foo <strong>bar</strong> baz</em></p>
+ wysiwyg: |-
+ <p><em>foo </em><strong>bar</strong> baz</p>
+06_05__inlines__emphasis_and_strong_emphasis__57:
+ canonical: |
+ <p><em>foo <em>bar</em> baz</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto"><em>foo <em>bar</em> baz</em></p>
+ wysiwyg: |-
+ <p><em>foo bar</em> baz</p>
+06_05__inlines__emphasis_and_strong_emphasis__58:
+ canonical: |
+ <p><em><em>foo</em> bar</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:11" dir="auto"><em><em>foo</em> bar</em></p>
+ wysiwyg: |-
+ <p><em>foo</em> bar</p>
+06_05__inlines__emphasis_and_strong_emphasis__59:
+ canonical: |
+ <p><em>foo <em>bar</em></em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:11" dir="auto"><em>foo <em>bar</em></em></p>
+ wysiwyg: |-
+ <p><em>foo bar</em></p>
+06_05__inlines__emphasis_and_strong_emphasis__60:
+ canonical: |
+ <p><em>foo <strong>bar</strong> baz</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:17" dir="auto"><em>foo <strong>bar</strong> baz</em></p>
+ wysiwyg: |-
+ <p><em>foo </em><strong>bar</strong> baz</p>
+06_05__inlines__emphasis_and_strong_emphasis__61:
+ canonical: |
+ <p><em>foo<strong>bar</strong>baz</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto"><em>foo<strong>bar</strong>baz</em></p>
+ wysiwyg: |-
+ <p><em>foo</em><strong>bar</strong>baz</p>
+06_05__inlines__emphasis_and_strong_emphasis__62:
+ canonical: |
+ <p><em>foo**bar</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:10" dir="auto"><em>foo**bar</em></p>
+ wysiwyg: |-
+ <p><em>foo**bar</em></p>
+06_05__inlines__emphasis_and_strong_emphasis__63:
+ canonical: |
+ <p><em><strong>foo</strong> bar</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:13" dir="auto"><em><strong>foo</strong> bar</em></p>
+ wysiwyg: |-
+ <p><strong><em>foo</em></strong> bar</p>
+06_05__inlines__emphasis_and_strong_emphasis__64:
+ canonical: |
+ <p><em>foo <strong>bar</strong></em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:13" dir="auto"><em>foo <strong>bar</strong></em></p>
+ wysiwyg: |-
+ <p><em>foo </em><strong>bar</strong></p>
+06_05__inlines__emphasis_and_strong_emphasis__65:
+ canonical: |
+ <p><em>foo<strong>bar</strong></em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:12" dir="auto"><em>foo<strong>bar</strong></em></p>
+ wysiwyg: |-
+ <p><em>foo</em><strong>bar</strong></p>
+06_05__inlines__emphasis_and_strong_emphasis__66:
+ canonical: |
+ <p>foo<em><strong>bar</strong></em>baz</p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto">foo<em><strong>bar</strong></em>baz</p>
+ wysiwyg: |-
+ <p>foo<strong><em>bar</em></strong>baz</p>
+06_05__inlines__emphasis_and_strong_emphasis__67:
+ canonical: |
+ <p>foo<strong><strong><strong>bar</strong></strong></strong>***baz</p>
+ static: |-
+ <p data-sourcepos="1:1-1:24" dir="auto">foo<strong><strong><strong>bar</strong></strong></strong>***baz</p>
+ wysiwyg: |-
+ <p>foo<strong>bar</strong>***baz</p>
+06_05__inlines__emphasis_and_strong_emphasis__68:
+ canonical: |
+ <p><em>foo <strong>bar <em>baz</em> bim</strong> bop</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:27" dir="auto"><em>foo <strong>bar <em>baz</em> bim</strong> bop</em></p>
+ wysiwyg: |-
+ <p><em>foo </em><strong>bar </strong><em>baz</em> bim bop</p>
+06_05__inlines__emphasis_and_strong_emphasis__69:
+ canonical: |
+ <p><em>foo <a href="/url"><em>bar</em></a></em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:19" dir="auto"><em>foo <a href="/url"><em>bar</em></a></em></p>
+ wysiwyg: |-
+ <p><em>foo </em><a target="_blank" rel="noopener noreferrer nofollow" href="/url"><em>bar</em></a></p>
+06_05__inlines__emphasis_and_strong_emphasis__70:
+ canonical: |
+ <p>** is not an empty emphasis</p>
+ static: |-
+ <p data-sourcepos="1:1-1:27" dir="auto">** is not an empty emphasis</p>
+ wysiwyg: |-
+ <p>** is not an empty emphasis</p>
+06_05__inlines__emphasis_and_strong_emphasis__71:
+ canonical: |
+ <p>**** is not an empty strong emphasis</p>
+ static: |-
+ <p data-sourcepos="1:1-1:36" dir="auto">**** is not an empty strong emphasis</p>
+ wysiwyg: |-
+ <p>**** is not an empty strong emphasis</p>
+06_05__inlines__emphasis_and_strong_emphasis__72:
+ canonical: |
+ <p><strong>foo <a href="/url">bar</a></strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:19" dir="auto"><strong>foo <a href="/url">bar</a></strong></p>
+ wysiwyg: |-
+ <p><strong>foo </strong><a target="_blank" rel="noopener noreferrer nofollow" href="/url">bar</a></p>
+06_05__inlines__emphasis_and_strong_emphasis__73:
+ canonical: |
+ <p><strong>foo
+ bar</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-2:5" dir="auto"><strong>foo&#x000A;bar</strong></p>
+ wysiwyg: |-
+ <p><strong>foo
+ bar</strong></p>
+06_05__inlines__emphasis_and_strong_emphasis__74:
+ canonical: |
+ <p><strong>foo <em>bar</em> baz</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:17" dir="auto"><strong>foo <em>bar</em> baz</strong></p>
+ wysiwyg: |-
+ <p><strong>foo </strong><em>bar</em> baz</p>
+06_05__inlines__emphasis_and_strong_emphasis__75:
+ canonical: |
+ <p><strong>foo <strong>bar</strong> baz</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:19" dir="auto"><strong>foo <strong>bar</strong> baz</strong></p>
+ wysiwyg: |-
+ <p><strong>foo bar</strong> baz</p>
+06_05__inlines__emphasis_and_strong_emphasis__76:
+ canonical: |
+ <p><strong><strong>foo</strong> bar</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto"><strong><strong>foo</strong> bar</strong></p>
+ wysiwyg: |-
+ <p><strong>foo</strong> bar</p>
+06_05__inlines__emphasis_and_strong_emphasis__77:
+ canonical: |
+ <p><strong>foo <strong>bar</strong></strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto"><strong>foo <strong>bar</strong></strong></p>
+ wysiwyg: |-
+ <p><strong>foo bar</strong></p>
+06_05__inlines__emphasis_and_strong_emphasis__78:
+ canonical: |
+ <p><strong>foo <em>bar</em> baz</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:17" dir="auto"><strong>foo <em>bar</em> baz</strong></p>
+ wysiwyg: |-
+ <p><strong>foo </strong><em>bar</em> baz</p>
+06_05__inlines__emphasis_and_strong_emphasis__79:
+ canonical: |
+ <p><strong>foo<em>bar</em>baz</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto"><strong>foo<em>bar</em>baz</strong></p>
+ wysiwyg: |-
+ <p><strong>foo</strong><em>bar</em>baz</p>
+06_05__inlines__emphasis_and_strong_emphasis__80:
+ canonical: |
+ <p><strong><em>foo</em> bar</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:13" dir="auto"><strong><em>foo</em> bar</strong></p>
+ wysiwyg: |-
+ <p><strong><em>foo</em></strong> bar</p>
+06_05__inlines__emphasis_and_strong_emphasis__81:
+ canonical: |
+ <p><strong>foo <em>bar</em></strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:13" dir="auto"><strong>foo <em>bar</em></strong></p>
+ wysiwyg: |-
+ <p><strong>foo </strong><em>bar</em></p>
+06_05__inlines__emphasis_and_strong_emphasis__82:
+ canonical: |
+ <p><strong>foo <em>bar <strong>baz</strong>
+ bim</em> bop</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-2:10" dir="auto"><strong>foo <em>bar <strong>baz</strong>&#x000A;bim</em> bop</strong></p>
+ wysiwyg: |-
+ <p><strong>foo </strong><em>bar </em><strong>baz</strong>
+ bim bop</p>
+06_05__inlines__emphasis_and_strong_emphasis__83:
+ canonical: |
+ <p><strong>foo <a href="/url"><em>bar</em></a></strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:21" dir="auto"><strong>foo <a href="/url"><em>bar</em></a></strong></p>
+ wysiwyg: |-
+ <p><strong>foo </strong><a target="_blank" rel="noopener noreferrer nofollow" href="/url"><em>bar</em></a></p>
+06_05__inlines__emphasis_and_strong_emphasis__84:
+ canonical: |
+ <p>__ is not an empty emphasis</p>
+ static: |-
+ <p data-sourcepos="1:1-1:27" dir="auto">__ is not an empty emphasis</p>
+ wysiwyg: |-
+ <p>__ is not an empty emphasis</p>
+06_05__inlines__emphasis_and_strong_emphasis__85:
+ canonical: |
+ <p>____ is not an empty strong emphasis</p>
+ static: |-
+ <p data-sourcepos="1:1-1:36" dir="auto">____ is not an empty strong emphasis</p>
+ wysiwyg: |-
+ <p>____ is not an empty strong emphasis</p>
+06_05__inlines__emphasis_and_strong_emphasis__86:
+ canonical: |
+ <p>foo ***</p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto">foo ***</p>
+ wysiwyg: |-
+ <p>foo ***</p>
+06_05__inlines__emphasis_and_strong_emphasis__87:
+ canonical: |
+ <p>foo <em>*</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto">foo <em>*</em></p>
+ wysiwyg: |-
+ <p>foo <em>*</em></p>
+06_05__inlines__emphasis_and_strong_emphasis__88:
+ canonical: |
+ <p>foo <em>_</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto">foo <em>_</em></p>
+ wysiwyg: |-
+ <p>foo <em>_</em></p>
+06_05__inlines__emphasis_and_strong_emphasis__89:
+ canonical: |
+ <p>foo *****</p>
+ static: |-
+ <p data-sourcepos="1:1-1:9" dir="auto">foo *****</p>
+ wysiwyg: |-
+ <p>foo *****</p>
+06_05__inlines__emphasis_and_strong_emphasis__90:
+ canonical: |
+ <p>foo <strong>*</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:10" dir="auto">foo <strong>*</strong></p>
+ wysiwyg: |-
+ <p>foo <strong>*</strong></p>
+06_05__inlines__emphasis_and_strong_emphasis__91:
+ canonical: |
+ <p>foo <strong>_</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:9" dir="auto">foo <strong>_</strong></p>
+ wysiwyg: |-
+ <p>foo <strong>_</strong></p>
+06_05__inlines__emphasis_and_strong_emphasis__92:
+ canonical: |
+ <p>*<em>foo</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:6" dir="auto">*<em>foo</em></p>
+ wysiwyg: |-
+ <p>*<em>foo</em></p>
+06_05__inlines__emphasis_and_strong_emphasis__93:
+ canonical: |
+ <p><em>foo</em>*</p>
+ static: |-
+ <p data-sourcepos="1:1-1:6" dir="auto"><em>foo</em>*</p>
+ wysiwyg: |-
+ <p><em>foo</em>*</p>
+06_05__inlines__emphasis_and_strong_emphasis__94:
+ canonical: |
+ <p>*<strong>foo</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto">*<strong>foo</strong></p>
+ wysiwyg: |-
+ <p>*<strong>foo</strong></p>
+06_05__inlines__emphasis_and_strong_emphasis__95:
+ canonical: |
+ <p>***<em>foo</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto">***<em>foo</em></p>
+ wysiwyg: |-
+ <p>***<em>foo</em></p>
+06_05__inlines__emphasis_and_strong_emphasis__96:
+ canonical: |
+ <p><strong>foo</strong>*</p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto"><strong>foo</strong>*</p>
+ wysiwyg: |-
+ <p><strong>foo</strong>*</p>
+06_05__inlines__emphasis_and_strong_emphasis__97:
+ canonical: |
+ <p><em>foo</em>***</p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto"><em>foo</em>***</p>
+ wysiwyg: |-
+ <p><em>foo</em>***</p>
+06_05__inlines__emphasis_and_strong_emphasis__98:
+ canonical: |
+ <p>foo ___</p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto">foo ___</p>
+ wysiwyg: |-
+ <p>foo ___</p>
+06_05__inlines__emphasis_and_strong_emphasis__99:
+ canonical: |
+ <p>foo <em>_</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto">foo <em>_</em></p>
+ wysiwyg: |-
+ <p>foo <em>_</em></p>
+06_05__inlines__emphasis_and_strong_emphasis__100:
+ canonical: |
+ <p>foo <em>*</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto">foo <em>*</em></p>
+ wysiwyg: |-
+ <p>foo <em>*</em></p>
+06_05__inlines__emphasis_and_strong_emphasis__101:
+ canonical: |
+ <p>foo _____</p>
+ static: |-
+ <p data-sourcepos="1:1-1:9" dir="auto">foo _____</p>
+ wysiwyg: |-
+ <p>foo _____</p>
+06_05__inlines__emphasis_and_strong_emphasis__102:
+ canonical: |
+ <p>foo <strong>_</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:10" dir="auto">foo <strong>_</strong></p>
+ wysiwyg: |-
+ <p>foo <strong>_</strong></p>
+06_05__inlines__emphasis_and_strong_emphasis__103:
+ canonical: |
+ <p>foo <strong>*</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:9" dir="auto">foo <strong>*</strong></p>
+ wysiwyg: |-
+ <p>foo <strong>*</strong></p>
+06_05__inlines__emphasis_and_strong_emphasis__104:
+ canonical: |
+ <p>_<em>foo</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:6" dir="auto">_<em>foo</em></p>
+ wysiwyg: |-
+ <p>_<em>foo</em></p>
+06_05__inlines__emphasis_and_strong_emphasis__105:
+ canonical: |
+ <p><em>foo</em>_</p>
+ static: |-
+ <p data-sourcepos="1:1-1:6" dir="auto"><em>foo</em>_</p>
+ wysiwyg: |-
+ <p><em>foo</em>_</p>
+06_05__inlines__emphasis_and_strong_emphasis__106:
+ canonical: |
+ <p>_<strong>foo</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto">_<strong>foo</strong></p>
+ wysiwyg: |-
+ <p>_<strong>foo</strong></p>
+06_05__inlines__emphasis_and_strong_emphasis__107:
+ canonical: |
+ <p>___<em>foo</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto">___<em>foo</em></p>
+ wysiwyg: |-
+ <p>___<em>foo</em></p>
+06_05__inlines__emphasis_and_strong_emphasis__108:
+ canonical: |
+ <p><strong>foo</strong>_</p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto"><strong>foo</strong>_</p>
+ wysiwyg: |-
+ <p><strong>foo</strong>_</p>
+06_05__inlines__emphasis_and_strong_emphasis__109:
+ canonical: |
+ <p><em>foo</em>___</p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto"><em>foo</em>___</p>
+ wysiwyg: |-
+ <p><em>foo</em>___</p>
+06_05__inlines__emphasis_and_strong_emphasis__110:
+ canonical: |
+ <p><strong>foo</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto"><strong>foo</strong></p>
+ wysiwyg: |-
+ <p><strong>foo</strong></p>
+06_05__inlines__emphasis_and_strong_emphasis__111:
+ canonical: |
+ <p><em><em>foo</em></em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto"><em><em>foo</em></em></p>
+ wysiwyg: |-
+ <p><em>foo</em></p>
+06_05__inlines__emphasis_and_strong_emphasis__112:
+ canonical: |
+ <p><strong>foo</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto"><strong>foo</strong></p>
+ wysiwyg: |-
+ <p><strong>foo</strong></p>
+06_05__inlines__emphasis_and_strong_emphasis__113:
+ canonical: |
+ <p><em><em>foo</em></em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto"><em><em>foo</em></em></p>
+ wysiwyg: |-
+ <p><em>foo</em></p>
+06_05__inlines__emphasis_and_strong_emphasis__114:
+ canonical: |
+ <p><strong><strong>foo</strong></strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:11" dir="auto"><strong><strong>foo</strong></strong></p>
+ wysiwyg: |-
+ <p><strong>foo</strong></p>
+06_05__inlines__emphasis_and_strong_emphasis__115:
+ canonical: |
+ <p><strong><strong>foo</strong></strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:11" dir="auto"><strong><strong>foo</strong></strong></p>
+ wysiwyg: |-
+ <p><strong>foo</strong></p>
+06_05__inlines__emphasis_and_strong_emphasis__116:
+ canonical: |
+ <p><strong><strong><strong>foo</strong></strong></strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto"><strong><strong><strong>foo</strong></strong></strong></p>
+ wysiwyg: |-
+ <p><strong>foo</strong></p>
+06_05__inlines__emphasis_and_strong_emphasis__117:
+ canonical: |
+ <p><em><strong>foo</strong></em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:9" dir="auto"><em><strong>foo</strong></em></p>
+ wysiwyg: |-
+ <p><strong><em>foo</em></strong></p>
+06_05__inlines__emphasis_and_strong_emphasis__118:
+ canonical: |
+ <p><em><strong><strong>foo</strong></strong></em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:13" dir="auto"><em><strong><strong>foo</strong></strong></em></p>
+ wysiwyg: |-
+ <p><strong><em>foo</em></strong></p>
+06_05__inlines__emphasis_and_strong_emphasis__119:
+ canonical: |
+ <p><em>foo _bar</em> baz_</p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto"><em>foo _bar</em> baz_</p>
+ wysiwyg: |-
+ <p><em>foo _bar</em> baz_</p>
+06_05__inlines__emphasis_and_strong_emphasis__120:
+ canonical: |
+ <p><em>foo <strong>bar *baz bim</strong> bam</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:26" dir="auto"><em>foo <strong>bar *baz bim</strong> bam</em></p>
+ wysiwyg: |-
+ <p><em>foo </em><strong>bar *baz bim</strong> bam</p>
+06_05__inlines__emphasis_and_strong_emphasis__121:
+ canonical: |
+ <p>**foo <strong>bar baz</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:17" dir="auto">**foo <strong>bar baz</strong></p>
+ wysiwyg: |-
+ <p>**foo <strong>bar baz</strong></p>
+06_05__inlines__emphasis_and_strong_emphasis__122:
+ canonical: |
+ <p>*foo <em>bar baz</em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:14" dir="auto">*foo <em>bar baz</em></p>
+ wysiwyg: |-
+ <p>*foo <em>bar baz</em></p>
+06_05__inlines__emphasis_and_strong_emphasis__123:
+ canonical: |
+ <p>*<a href="/url">bar*</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:13" dir="auto">*<a href="/url">bar*</a></p>
+ wysiwyg: |-
+ <p>*<a target="_blank" rel="noopener noreferrer nofollow" href="/url">bar*</a></p>
+06_05__inlines__emphasis_and_strong_emphasis__124:
+ canonical: |
+ <p>_foo <a href="/url">bar_</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:17" dir="auto">_foo <a href="/url">bar_</a></p>
+ wysiwyg: |-
+ <p>_foo <a target="_blank" rel="noopener noreferrer nofollow" href="/url">bar_</a></p>
+06_05__inlines__emphasis_and_strong_emphasis__125:
+ canonical: |
+ <p>*<img src="foo" title="*"/></p>
+ static: |-
+ <p data-sourcepos="1:1-1:27" dir="auto">*<a class="no-attachment-icon" href="foo" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" title="*" decoding="async" class="lazy" data-src="foo"></a></p>
+ wysiwyg: |-
+ <p>*<img src="foo" title="*"></p>
+06_05__inlines__emphasis_and_strong_emphasis__126:
+ canonical: |
+ <p>**<a href="**"></p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto">**<a href="**"></a></p>
+ wysiwyg: |-
+ <p>**</p>
+06_05__inlines__emphasis_and_strong_emphasis__127:
+ canonical: |
+ <p>__<a href="__"></p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto">__<a href="__"></a></p>
+ wysiwyg: |-
+ <p>__</p>
+06_05__inlines__emphasis_and_strong_emphasis__128:
+ canonical: |
+ <p><em>a <code>*</code></em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto"><em>a <code>*</code></em></p>
+ wysiwyg: |-
+ <p><em>a </em><code>*</code></p>
+06_05__inlines__emphasis_and_strong_emphasis__129:
+ canonical: |
+ <p><em>a <code>_</code></em></p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto"><em>a <code>_</code></em></p>
+ wysiwyg: |-
+ <p><em>a </em><code>_</code></p>
+06_05__inlines__emphasis_and_strong_emphasis__130:
+ canonical: |
+ <p>**a<a href="http://foo.bar/?q=**">http://foo.bar/?q=**</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:25" dir="auto">**a<a href="http://foo.bar/?q=**" rel="nofollow noreferrer noopener" target="_blank">http://foo.bar/?q=**</a></p>
+ wysiwyg: |-
+ <p>**a<a target="_blank" rel="noopener noreferrer nofollow" href="http://foo.bar/?q=**">http://foo.bar/?q=**</a></p>
+06_05__inlines__emphasis_and_strong_emphasis__131:
+ canonical: |
+ <p>__a<a href="http://foo.bar/?q=__">http://foo.bar/?q=__</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:25" dir="auto">__a<a href="http://foo.bar/?q=__" rel="nofollow noreferrer noopener" target="_blank">http://foo.bar/?q=__</a></p>
+ wysiwyg: |-
+ <p>__a<a target="_blank" rel="noopener noreferrer nofollow" href="http://foo.bar/?q=__">http://foo.bar/?q=__</a></p>
+06_06__inlines__strikethrough_extension__01:
+ canonical: |
+ <p><del>Hi</del> Hello, world!</p>
+ static: |-
+ <p data-sourcepos="1:1-1:20" dir="auto"><del>Hi</del> Hello, world!</p>
+ wysiwyg: |-
+ <p>~~Hi~~ Hello, world!</p>
+06_06__inlines__strikethrough_extension__02:
+ canonical: |
+ <p>This ~~has a</p>
+ <p>new paragraph~~.</p>
+ static: |-
+ <p data-sourcepos="1:1-1:12" dir="auto">This ~~has a</p>&#x000A;<p data-sourcepos="3:1-3:16" dir="auto">new paragraph~~.</p>
+ wysiwyg: |-
+ <p>This ~~has a</p>
+06_07__inlines__links__01:
+ canonical: |
+ <p><a href="/uri" title="title">link</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:20" dir="auto"><a href="/uri" title="title">link</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/uri" title="title">link</a></p>
+06_07__inlines__links__02:
+ canonical: |
+ <p><a href="/uri">link</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:12" dir="auto"><a href="/uri">link</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/uri">link</a></p>
+06_07__inlines__links__03:
+ canonical: |
+ <p><a href="">link</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto"><a href="">link</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="">link</a></p>
+06_07__inlines__links__04:
+ canonical: |
+ <p><a href="">link</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:10" dir="auto"><a href="">link</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="">link</a></p>
+06_07__inlines__links__05:
+ canonical: |
+ <p>[link](/my uri)</p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto"><a href="/my%20uri">link</a></p>
+ wysiwyg: |-
+ <p>[link](/my uri)</p>
+06_07__inlines__links__06:
+ canonical: |
+ <p><a href="/my%20uri">link</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:17" dir="auto"><a href="/my%20uri">link</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/my%20uri">link</a></p>
+06_07__inlines__links__07:
+ canonical: |
+ <p>[link](foo
+ bar)</p>
+ static: |-
+ <p data-sourcepos="1:1-2:4" dir="auto">[link](foo&#x000A;bar)</p>
+ wysiwyg: |-
+ <p>[link](foo
+ bar)</p>
+06_07__inlines__links__08:
+ canonical: |
+ <p>[link](<foo
+ bar>)</p>
+ static: |-
+ <p data-sourcepos="1:1-2:5" dir="auto">[link]()</p>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "foo" not supported by this converter. Please, provide an specification.
+06_07__inlines__links__09:
+ canonical: |
+ <p><a href="b)c">a</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:10" dir="auto"><a href="b)c">a</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="b)c">a</a></p>
+06_07__inlines__links__10:
+ canonical: |
+ <p>[link](&lt;foo&gt;)</p>
+ static: |-
+ <p data-sourcepos="1:1-1:14" dir="auto"><a href="%3Cfoo%3E">link</a></p>
+ wysiwyg: |-
+ <p>[link](&lt;foo&gt;)</p>
+06_07__inlines__links__11:
+ canonical: |
+ <p>[a](&lt;b)c
+ [a](&lt;b)c&gt;
+ [a](<b>c)</p>
+ static: |-
+ <p data-sourcepos="1:1-3:9" dir="auto"><a href="%3Cb">a</a>c&#x000A;<a href="%3Cb">a</a>c&gt;&#x000A;[a](<b>c)</b></p>
+ wysiwyg: |-
+ <p>[a](&lt;b)c
+ [a](&lt;b)c&gt;
+ [a](<strong>c)</strong></p>
+06_07__inlines__links__12:
+ canonical: |
+ <p><a href="(foo)">link</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto"><a href="(foo)">link</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="(foo)">link</a></p>
+06_07__inlines__links__13:
+ canonical: |
+ <p><a href="foo(and(bar))">link</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:21" dir="auto"><a href="foo(and(bar))">link</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="foo(and(bar))">link</a></p>
+06_07__inlines__links__14:
+ canonical: |
+ <p><a href="foo(and(bar)">link</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:23" dir="auto"><a href="foo(and(bar)">link</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="foo(and(bar)">link</a></p>
+06_07__inlines__links__15:
+ canonical: |
+ <p><a href="foo(and(bar)">link</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:22" dir="auto"><a href="foo(and(bar)">link</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="foo(and(bar)">link</a></p>
+06_07__inlines__links__16:
+ canonical: |
+ <p><a href="foo):">link</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto"><a>link</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="foo):">link</a></p>
+06_07__inlines__links__17:
+ canonical: |
+ <p><a href="#fragment">link</a></p>
+ <p><a href="http://example.com#fragment">link</a></p>
+ <p><a href="http://example.com?foo=3#frag">link</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:17" dir="auto"><a href="#fragment">link</a></p>&#x000A;<p data-sourcepos="3:1-3:35" dir="auto"><a href="http://example.com#fragment" rel="nofollow noreferrer noopener" target="_blank">link</a></p>&#x000A;<p data-sourcepos="5:1-5:37" dir="auto"><a href="http://example.com?foo=3#frag" rel="nofollow noreferrer noopener" target="_blank">link</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="#fragment">link</a></p>
+06_07__inlines__links__18:
+ canonical: |
+ <p><a href="foo%5Cbar">link</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto"><a href="foo%5Cbar">link</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="foo%5Cbar">link</a></p>
+06_07__inlines__links__19:
+ canonical: |
+ <p><a href="foo%20b%C3%A4">link</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:21" dir="auto"><a href="foo%20b%C3%A4">link</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="foo%20b%C3%A4">link</a></p>
+06_07__inlines__links__20:
+ canonical: |
+ <p><a href="%22title%22">link</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto"><a href="%22title%22">link</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="%22title%22">link</a></p>
+06_07__inlines__links__21:
+ canonical: |
+ <p><a href="/url" title="title">link</a>
+ <a href="/url" title="title">link</a>
+ <a href="/url" title="title">link</a></p>
+ static: |-
+ <p data-sourcepos="1:1-3:20" dir="auto"><a href="/url" title="title">link</a>&#x000A;<a href="/url" title="title">link</a>&#x000A;<a href="/url" title="title">link</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url" title="title">linklinklink</a></p>
+06_07__inlines__links__22:
+ canonical: |
+ <p><a href="/url" title="title &quot;&quot;">link</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:29" dir="auto"><a href="/url" title='title ""'>link</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url" title="title &quot;&quot;">link</a></p>
+06_07__inlines__links__23:
+ canonical: |
+ <p><a href="/url%C2%A0%22title%22">link</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:21" dir="auto"><a href="/url%C2%A0%22title%22">link</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url%C2%A0%22title%22">link</a></p>
+06_07__inlines__links__24:
+ canonical: |
+ <p>[link](/url &quot;title &quot;and&quot; title&quot;)</p>
+ static: |-
+ <p data-sourcepos="1:1-1:32" dir="auto">[link](/url "title "and" title")</p>
+ wysiwyg: |-
+ <p>[link](/url "title "and" title")</p>
+06_07__inlines__links__25:
+ canonical: |
+ <p><a href="/url" title="title &quot;and&quot; title">link</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:32" dir="auto"><a href="/url" title='title "and" title'>link</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url" title="title &quot;and&quot; title">link</a></p>
+06_07__inlines__links__26:
+ canonical: |
+ <p><a href="/uri" title="title">link</a></p>
+ static: |-
+ <p data-sourcepos="1:1-2:12" dir="auto"><a href="/uri" title="title">link</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/uri" title="title">link</a></p>
+06_07__inlines__links__27:
+ canonical: |
+ <p>[link] (/uri)</p>
+ static: |-
+ <p data-sourcepos="1:1-1:13" dir="auto">[link] (/uri)</p>
+ wysiwyg: |-
+ <p>[link] (/uri)</p>
+06_07__inlines__links__28:
+ canonical: |
+ <p><a href="/uri">link [foo [bar]]</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:24" dir="auto"><a href="/uri">link [foo [bar]]</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/uri">link [foo [bar]]</a></p>
+06_07__inlines__links__29:
+ canonical: |
+ <p>[link] bar](/uri)</p>
+ static: |-
+ <p data-sourcepos="1:1-1:17" dir="auto">[link] bar](/uri)</p>
+ wysiwyg: |-
+ <p>[link] bar](/uri)</p>
+06_07__inlines__links__30:
+ canonical: |
+ <p>[link <a href="/uri">bar</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:17" dir="auto">[link <a href="/uri">bar</a></p>
+ wysiwyg: |-
+ <p>[link <a target="_blank" rel="noopener noreferrer nofollow" href="/uri">bar</a></p>
+06_07__inlines__links__31:
+ canonical: |
+ <p><a href="/uri">link [bar</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:18" dir="auto"><a href="/uri">link [bar</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/uri">link [bar</a></p>
+06_07__inlines__links__32:
+ canonical: |
+ <p><a href="/uri">link <em>foo <strong>bar</strong> <code>#</code></em></a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:30" dir="auto"><a href="/uri">link <em>foo <strong>bar</strong> <code>#</code></em></a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/uri">link </a><em>foo </em><strong>bar</strong><code>#</code></p>
+06_07__inlines__links__33:
+ canonical: |
+ <p><a href="/uri"><img src="moon.jpg" alt="moon" /></a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:25" dir="auto"><a href="/uri"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="moon" decoding="async" class="lazy" data-src="moon.jpg"></a></p>
+ wysiwyg: |-
+ Error - check implementation:
+ Cannot destructure property 'type' of 'this.stack.pop(...)' as it is undefined.
+06_07__inlines__links__34:
+ canonical: |
+ <p>[foo <a href="/uri">bar</a>](/uri)</p>
+ static: |-
+ <p data-sourcepos="1:1-1:23" dir="auto">[foo <a href="/uri">bar</a>](/uri)</p>
+ wysiwyg: |-
+ <p>[foo <a target="_blank" rel="noopener noreferrer nofollow" href="/uri">bar</a>](/uri)</p>
+06_07__inlines__links__35:
+ canonical: |
+ <p>[foo <em>[bar <a href="/uri">baz</a>](/uri)</em>](/uri)</p>
+ static: |-
+ <p data-sourcepos="1:1-1:37" dir="auto">[foo <em>[bar <a href="/uri">baz</a>](/uri)</em>](/uri)</p>
+ wysiwyg: |-
+ <p>[foo <em>[bar </em><a target="_blank" rel="noopener noreferrer nofollow" href="/uri">baz</a>](/uri)](/uri)</p>
+06_07__inlines__links__36:
+ canonical: |
+ <p><img src="uri3" alt="[foo](uri2)" /></p>
+ static: |-
+ <p data-sourcepos="1:1-1:28" dir="auto"><a class="no-attachment-icon" href="uri3" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="[foo](uri2)" decoding="async" class="lazy" data-src="uri3"></a></p>
+ wysiwyg: |-
+ <p><img src="uri3" alt="[foo](uri2)"></p>
+06_07__inlines__links__37:
+ canonical: |
+ <p>*<a href="/uri">foo*</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:13" dir="auto">*<a href="/uri">foo*</a></p>
+ wysiwyg: |-
+ <p>*<a target="_blank" rel="noopener noreferrer nofollow" href="/uri">foo*</a></p>
+06_07__inlines__links__38:
+ canonical: |
+ <p><a href="baz*">foo *bar</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:16" dir="auto"><a href="baz*">foo *bar</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="baz*">foo *bar</a></p>
+06_07__inlines__links__39:
+ canonical: |
+ <p><em>foo [bar</em> baz]</p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto"><em>foo [bar</em> baz]</p>
+ wysiwyg: |-
+ <p><em>foo [bar</em> baz]</p>
+06_07__inlines__links__40:
+ canonical: |
+ <p>[foo <bar attr="](baz)"></p>
+ static: |-
+ <p data-sourcepos="1:1-1:24" dir="auto">[foo </p>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "bar" not supported by this converter. Please, provide an specification.
+06_07__inlines__links__41:
+ canonical: |
+ <p>[foo<code>](/uri)</code></p>
+ static: |-
+ <p data-sourcepos="1:1-1:13" dir="auto">[foo<code>](/uri)</code></p>
+ wysiwyg: |-
+ <p>[foo<code>](/uri)</code></p>
+06_07__inlines__links__42:
+ canonical: |
+ <p>[foo<a href="http://example.com/?search=%5D(uri)">http://example.com/?search=](uri)</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:39" dir="auto">[foo<a href="http://example.com/?search=%5D(uri)" rel="nofollow noreferrer noopener" target="_blank">http://example.com/?search=](uri)</a></p>
+ wysiwyg: |-
+ <p>[foo<a target="_blank" rel="noopener noreferrer nofollow" href="http://example.com/?search=%5D(uri)">http://example.com/?search=](uri)</a></p>
+06_07__inlines__links__43:
+ canonical: |
+ <p><a href="/url" title="title">foo</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:10" dir="auto"><a href="/url" title="title">foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url" title="title">foo</a></p>
+06_07__inlines__links__44:
+ canonical: |
+ <p><a href="/uri">link [foo [bar]]</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:23" dir="auto"><a href="/uri">link [foo [bar]]</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/uri">link [foo [bar]]</a></p>
+06_07__inlines__links__45:
+ canonical: |
+ <p><a href="/uri">link [bar</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:17" dir="auto"><a href="/uri">link [bar</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/uri">link [bar</a></p>
+06_07__inlines__links__46:
+ canonical: |
+ <p><a href="/uri">link <em>foo <strong>bar</strong> <code>#</code></em></a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:29" dir="auto"><a href="/uri">link <em>foo <strong>bar</strong> <code>#</code></em></a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/uri">link </a><em>foo </em><strong>bar</strong><code>#</code></p>
+06_07__inlines__links__47:
+ canonical: |
+ <p><a href="/uri"><img src="moon.jpg" alt="moon" /></a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:24" dir="auto"><a href="/uri"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="moon" decoding="async" class="lazy" data-src="moon.jpg"></a></p>
+ wysiwyg: |-
+ Error - check implementation:
+ Cannot destructure property 'type' of 'this.stack.pop(...)' as it is undefined.
+06_07__inlines__links__48:
+ canonical: |
+ <p>[foo <a href="/uri">bar</a>]<a href="/uri">ref</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:22" dir="auto">[foo <a href="/uri">bar</a>]<a href="/uri">ref</a></p>
+ wysiwyg: |-
+ <p>[foo <a target="_blank" rel="noopener noreferrer nofollow" href="/uri">bar</a>]<a target="_blank" rel="noopener noreferrer nofollow" href="/uri">ref</a></p>
+06_07__inlines__links__49:
+ canonical: |
+ <p>[foo <em>bar <a href="/uri">baz</a></em>]<a href="/uri">ref</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:27" dir="auto">[foo <em>bar <a href="/uri">baz</a></em>]<a href="/uri">ref</a></p>
+ wysiwyg: |-
+ <p>[foo <em>bar </em><a target="_blank" rel="noopener noreferrer nofollow" href="/uri">baz</a>]<a target="_blank" rel="noopener noreferrer nofollow" href="/uri">ref</a></p>
+06_07__inlines__links__50:
+ canonical: |
+ <p>*<a href="/uri">foo*</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:12" dir="auto">*<a href="/uri">foo*</a></p>
+ wysiwyg: |-
+ <p>*<a target="_blank" rel="noopener noreferrer nofollow" href="/uri">foo*</a></p>
+06_07__inlines__links__51:
+ canonical: |
+ <p><a href="/uri">foo *bar</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto"><a href="/uri">foo *bar</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/uri">foo *bar</a></p>
+06_07__inlines__links__52:
+ canonical: |
+ <p>[foo <bar attr="][ref]"></p>
+ static: |-
+ <p data-sourcepos="1:1-1:24" dir="auto">[foo </p>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "bar" not supported by this converter. Please, provide an specification.
+06_07__inlines__links__53:
+ canonical: |
+ <p>[foo<code>][ref]</code></p>
+ static: |-
+ <p data-sourcepos="1:1-1:12" dir="auto">[foo<code>][ref]</code></p>
+ wysiwyg: |-
+ <p>[foo<code>][ref]</code></p>
+06_07__inlines__links__54:
+ canonical: |
+ <p>[foo<a href="http://example.com/?search=%5D%5Bref%5D">http://example.com/?search=][ref]</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:39" dir="auto">[foo<a href="http://example.com/?search=%5D%5Bref%5D" rel="nofollow noreferrer noopener" target="_blank">http://example.com/?search=][ref]</a></p>
+ wysiwyg: |-
+ <p>[foo<a target="_blank" rel="noopener noreferrer nofollow" href="http://example.com/?search=%5D%5Bref%5D">http://example.com/?search=][ref]</a></p>
+06_07__inlines__links__55:
+ canonical: |
+ <p><a href="/url" title="title">foo</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:10" dir="auto"><a href="/url" title="title">foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url" title="title">foo</a></p>
+06_07__inlines__links__56:
+ canonical: |
+ <p><a href="/url">Толпой</a> is a Russian word.</p>
+ static: |-
+ <p data-sourcepos="1:1-1:47" dir="auto"><a href="/url">Толпой</a> is a Russian word.</p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url">Толпой</a> is a Russian word.</p>
+06_07__inlines__links__57:
+ canonical: |
+ <p><a href="/url">Baz</a></p>
+ static: |-
+ <p data-sourcepos="4:1-4:14" dir="auto"><a href="/url">Baz</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url">Baz</a></p>
+06_07__inlines__links__58:
+ canonical: |
+ <p>[foo] <a href="/url" title="title">bar</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:11" dir="auto">[foo] <a href="/url" title="title">bar</a></p>
+ wysiwyg: |-
+ <p>[foo] <a target="_blank" rel="noopener noreferrer nofollow" href="/url" title="title">bar</a></p>
+06_07__inlines__links__59:
+ canonical: |
+ <p>[foo]
+ <a href="/url" title="title">bar</a></p>
+ static: |-
+ <p data-sourcepos="1:1-2:5" dir="auto">[foo]&#x000A;<a href="/url" title="title">bar</a></p>
+ wysiwyg: |-
+ <p>[foo]
+ <a target="_blank" rel="noopener noreferrer nofollow" href="/url" title="title">bar</a></p>
+06_07__inlines__links__60:
+ canonical: |
+ <p><a href="/url1">bar</a></p>
+ static: |-
+ <p data-sourcepos="5:1-5:10" dir="auto"><a href="/url1">bar</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url1">bar</a></p>
+06_07__inlines__links__61:
+ canonical: |
+ <p>[bar][foo!]</p>
+ static: |-
+ <p data-sourcepos="1:1-1:32" dir="auto">[bar][foo<span>!</span>]</p>
+ wysiwyg: |-
+ <p>[bar][foo!]</p>
+06_07__inlines__links__62:
+ canonical: |
+ <p>[foo][ref[]</p>
+ <p>[ref[]: /uri</p>
+ static: |-
+ <p data-sourcepos="1:1-1:11" dir="auto">[foo][ref[]</p>&#x000A;<p data-sourcepos="3:1-3:12" dir="auto">[ref[]: /uri</p>
+ wysiwyg: |-
+ <p>[foo][ref[]</p>
+06_07__inlines__links__63:
+ canonical: |
+ <p>[foo][ref[bar]]</p>
+ <p>[ref[bar]]: /uri</p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto">[foo][ref[bar]]</p>&#x000A;<p data-sourcepos="3:1-3:16" dir="auto">[ref[bar]]: /uri</p>
+ wysiwyg: |-
+ <p>[foo][ref[bar]]</p>
+06_07__inlines__links__64:
+ canonical: |
+ <p>[[[foo]]]</p>
+ <p>[[[foo]]]: /url</p>
+ static: |-
+ <p data-sourcepos="1:1-1:9" dir="auto">[[[foo]]]</p>&#x000A;<p data-sourcepos="3:1-3:15" dir="auto">[[[foo]]]: /url</p>
+ wysiwyg: |-
+ <p>[[[foo]]]</p>
+06_07__inlines__links__65:
+ canonical: |
+ <p><a href="/uri">foo</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:12" dir="auto"><a href="/uri">foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/uri">foo</a></p>
+06_07__inlines__links__66:
+ canonical: |
+ <p><a href="/uri">bar\</a></p>
+ static: |-
+ <p data-sourcepos="3:1-3:7" dir="auto"><a href="/uri">bar\</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/uri">bar\</a></p>
+06_07__inlines__links__67:
+ canonical: |
+ <p>[]</p>
+ <p>[]: /uri</p>
+ static: |-
+ <p data-sourcepos="1:1-1:2" dir="auto">[]</p>&#x000A;<p data-sourcepos="3:1-3:8" dir="auto">[]: /uri</p>
+ wysiwyg: |-
+ <p>[]</p>
+06_07__inlines__links__68:
+ canonical: |
+ <p>[
+ ]</p>
+ <p>[
+ ]: /uri</p>
+ static: |-
+ <p data-sourcepos="1:1-2:2" dir="auto">[&#x000A;]</p>&#x000A;<p data-sourcepos="4:1-5:8" dir="auto">[&#x000A;]: /uri</p>
+ wysiwyg: |-
+ <p>[
+ ]</p>
+06_07__inlines__links__69:
+ canonical: |
+ <p><a href="/url" title="title">foo</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto"><a href="/url" title="title">foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url" title="title">foo</a></p>
+06_07__inlines__links__70:
+ canonical: |
+ <p><a href="/url" title="title"><em>foo</em> bar</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:13" dir="auto"><a href="/url" title="title"><em>foo</em> bar</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url" title="title"><em>foo</em></a> bar</p>
+06_07__inlines__links__71:
+ canonical: |
+ <p><a href="/url" title="title">Foo</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto"><a href="/url" title="title">Foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url" title="title">Foo</a></p>
+06_07__inlines__links__72:
+ canonical: |
+ <p><a href="/url" title="title">foo</a>
+ []</p>
+ static: |-
+ <p data-sourcepos="1:1-2:2" dir="auto"><a href="/url" title="title">foo</a>&#x000A;[]</p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url" title="title">foo</a>
+ []</p>
+06_07__inlines__links__73:
+ canonical: |
+ <p><a href="/url" title="title">foo</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:5" dir="auto"><a href="/url" title="title">foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url" title="title">foo</a></p>
+06_07__inlines__links__74:
+ canonical: |
+ <p><a href="/url" title="title"><em>foo</em> bar</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:11" dir="auto"><a href="/url" title="title"><em>foo</em> bar</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url" title="title"><em>foo</em></a> bar</p>
+06_07__inlines__links__75:
+ canonical: |
+ <p>[<a href="/url" title="title"><em>foo</em> bar</a>]</p>
+ static: |-
+ <p data-sourcepos="1:1-1:13" dir="auto">[<a href="/url" title="title"><em>foo</em> bar</a>]</p>
+ wysiwyg: |-
+ <p>[<a target="_blank" rel="noopener noreferrer nofollow" href="/url" title="title"><em>foo</em></a> bar]</p>
+06_07__inlines__links__76:
+ canonical: |
+ <p>[[bar <a href="/url">foo</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:11" dir="auto">[[bar <a href="/url">foo</a></p>
+ wysiwyg: |-
+ <p>[[bar <a target="_blank" rel="noopener noreferrer nofollow" href="/url">foo</a></p>
+06_07__inlines__links__77:
+ canonical: |
+ <p><a href="/url" title="title">Foo</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:5" dir="auto"><a href="/url" title="title">Foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url" title="title">Foo</a></p>
+06_07__inlines__links__78:
+ canonical: |
+ <p><a href="/url">foo</a> bar</p>
+ static: |-
+ <p data-sourcepos="1:1-1:9" dir="auto"><a href="/url">foo</a> bar</p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url">foo</a> bar</p>
+06_07__inlines__links__79:
+ canonical: |
+ <p>[foo]</p>
+ static: |-
+ <p data-sourcepos="1:1-1:6" dir="auto">[foo]</p>
+ wysiwyg: |-
+ <p>[foo]</p>
+06_07__inlines__links__80:
+ canonical: |
+ <p>*<a href="/url">foo*</a></p>
+ static: |-
+ <p data-sourcepos="3:1-3:7" dir="auto">*<a href="/url">foo*</a></p>
+ wysiwyg: |-
+ <p>*<a target="_blank" rel="noopener noreferrer nofollow" href="/url">foo*</a></p>
+06_07__inlines__links__81:
+ canonical: |
+ <p><a href="/url2">foo</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:10" dir="auto"><a href="/url2">foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url2">foo</a></p>
+06_07__inlines__links__82:
+ canonical: |
+ <p><a href="/url1">foo</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto"><a href="/url1">foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url1">foo</a></p>
+06_07__inlines__links__83:
+ canonical: |
+ <p><a href="">foo</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto"><a href="">foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="">foo</a></p>
+06_07__inlines__links__84:
+ canonical: |
+ <p><a href="/url1">foo</a>(not a link)</p>
+ static: |-
+ <p data-sourcepos="1:1-1:17" dir="auto"><a href="/url1">foo</a>(not a link)</p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url1">foo</a>(not a link)</p>
+06_07__inlines__links__85:
+ canonical: |
+ <p>[foo]<a href="/url">bar</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto">[foo]<a href="/url">bar</a></p>
+ wysiwyg: |-
+ <p>[foo]<a target="_blank" rel="noopener noreferrer nofollow" href="/url">bar</a></p>
+06_07__inlines__links__86:
+ canonical: |
+ <p><a href="/url2">foo</a><a href="/url1">baz</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto"><a href="/url2">foo</a><a href="/url1">baz</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url2">foo</a><a target="_blank" rel="noopener noreferrer nofollow" href="/url1">baz</a></p>
+06_07__inlines__links__87:
+ canonical: |
+ <p>[foo]<a href="/url1">bar</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto">[foo]<a href="/url1">bar</a></p>
+ wysiwyg: |-
+ <p>[foo]<a target="_blank" rel="noopener noreferrer nofollow" href="/url1">bar</a></p>
+06_08__inlines__images__01:
+ canonical: |
+ <p><img src="/url" alt="foo" title="title" /></p>
+ static: |-
+ <p data-sourcepos="1:1-1:20" dir="auto"><a class="no-attachment-icon" href="/url" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="foo" title="title" decoding="async" class="lazy" data-src="/url"></a></p>
+ wysiwyg: |-
+ <p><img src="/url" alt="foo" title="title"></p>
+06_08__inlines__images__02:
+ canonical: |
+ <p><img src="train.jpg" alt="foo bar" title="train &amp; tracks" /></p>
+ static: |-
+ <p data-sourcepos="1:1-1:12" dir="auto"><a class="no-attachment-icon" href="train.jpg" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="foo bar" title="train &amp; tracks" decoding="async" class="lazy" data-src="train.jpg"></a></p>
+ wysiwyg: |-
+ <p><img src="train.jpg" alt="foo bar" title="train &amp; tracks"></p>
+06_08__inlines__images__03:
+ canonical: |
+ <p><img src="/url2" alt="foo bar" /></p>
+ static: |-
+ <p data-sourcepos="1:1-1:26" dir="auto"><a class="no-attachment-icon" href="/url2" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="foo bar" decoding="async" class="lazy" data-src="/url2"></a></p>
+ wysiwyg: |-
+ <p><img src="/url2" alt="foo bar"></p>
+06_08__inlines__images__04:
+ canonical: |
+ <p><img src="/url2" alt="foo bar" /></p>
+ static: |-
+ <p data-sourcepos="1:1-1:25" dir="auto"><a class="no-attachment-icon" href="/url2" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="foo bar" decoding="async" class="lazy" data-src="/url2"></a></p>
+ wysiwyg: |-
+ <p><img src="/url2" alt="foo bar"></p>
+06_08__inlines__images__05:
+ canonical: |
+ <p><img src="train.jpg" alt="foo bar" title="train &amp; tracks" /></p>
+ static: |-
+ <p data-sourcepos="1:1-1:14" dir="auto"><a class="no-attachment-icon" href="train.jpg" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="foo bar" title="train &amp; tracks" decoding="async" class="lazy" data-src="train.jpg"></a></p>
+ wysiwyg: |-
+ <p><img src="train.jpg" alt="foo bar" title="train &amp; tracks"></p>
+06_08__inlines__images__06:
+ canonical: |
+ <p><img src="train.jpg" alt="foo bar" title="train &amp; tracks" /></p>
+ static: |-
+ <p data-sourcepos="1:1-1:20" dir="auto"><a class="no-attachment-icon" href="train.jpg" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="foo bar" title="train &amp; tracks" decoding="async" class="lazy" data-src="train.jpg"></a></p>
+ wysiwyg: |-
+ <p><img src="train.jpg" alt="foo bar" title="train &amp; tracks"></p>
+06_08__inlines__images__07:
+ canonical: |
+ <p><img src="train.jpg" alt="foo" /></p>
+ static: |-
+ <p data-sourcepos="1:1-1:17" dir="auto"><a class="no-attachment-icon" href="train.jpg" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="foo" decoding="async" class="lazy" data-src="train.jpg"></a></p>
+ wysiwyg: |-
+ <p><img src="train.jpg" alt="foo"></p>
+06_08__inlines__images__08:
+ canonical: |
+ <p>My <img src="/path/to/train.jpg" alt="foo bar" title="title" /></p>
+ static: |-
+ <p data-sourcepos="1:1-1:45" dir="auto">My <a class="no-attachment-icon" href="/path/to/train.jpg" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="foo bar" title="title" decoding="async" class="lazy" data-src="/path/to/train.jpg"></a></p>
+ wysiwyg: |-
+ <p>My <img src="/path/to/train.jpg" alt="foo bar" title="title"></p>
+06_08__inlines__images__09:
+ canonical: |
+ <p><img src="url" alt="foo" /></p>
+ static: |-
+ <p data-sourcepos="1:1-1:13" dir="auto"><a class="no-attachment-icon" href="url" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="foo" decoding="async" class="lazy" data-src="url"></a></p>
+ wysiwyg: |-
+ <p><img src="url" alt="foo"></p>
+06_08__inlines__images__10:
+ canonical: |
+ <p><img src="/url" alt="" /></p>
+ static: |-
+ <p data-sourcepos="1:1-1:9" dir="auto"><a class="no-attachment-icon" href="/url" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="" decoding="async" class="lazy" data-src="/url"></a></p>
+ wysiwyg: |-
+ <p><img src="/url" alt=""></p>
+06_08__inlines__images__11:
+ canonical: |
+ <p><img src="/url" alt="foo" /></p>
+ static: |-
+ <p data-sourcepos="1:1-1:11" dir="auto"><a class="no-attachment-icon" href="/url" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="foo" decoding="async" class="lazy" data-src="/url"></a></p>
+ wysiwyg: |-
+ <p><img src="/url" alt="foo"></p>
+06_08__inlines__images__12:
+ canonical: |
+ <p><img src="/url" alt="foo" /></p>
+ static: |-
+ <p data-sourcepos="1:1-1:11" dir="auto"><a class="no-attachment-icon" href="/url" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="foo" decoding="async" class="lazy" data-src="/url"></a></p>
+ wysiwyg: |-
+ <p><img src="/url" alt="foo"></p>
+06_08__inlines__images__13:
+ canonical: |
+ <p><img src="/url" alt="foo" title="title" /></p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto"><a class="no-attachment-icon" href="/url" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="foo" title="title" decoding="async" class="lazy" data-src="/url"></a></p>
+ wysiwyg: |-
+ <p><img src="/url" alt="foo" title="title"></p>
+06_08__inlines__images__14:
+ canonical: |
+ <p><img src="/url" alt="foo bar" title="title" /></p>
+ static: |-
+ <p data-sourcepos="1:1-1:14" dir="auto"><a class="no-attachment-icon" href="/url" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="foo bar" title="title" decoding="async" class="lazy" data-src="/url"></a></p>
+ wysiwyg: |-
+ <p><img src="/url" alt="foo bar" title="title"></p>
+06_08__inlines__images__15:
+ canonical: |
+ <p><img src="/url" alt="Foo" title="title" /></p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto"><a class="no-attachment-icon" href="/url" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Foo" title="title" decoding="async" class="lazy" data-src="/url"></a></p>
+ wysiwyg: |-
+ <p><img src="/url" alt="Foo" title="title"></p>
+06_08__inlines__images__16:
+ canonical: |
+ <p><img src="/url" alt="foo" title="title" />
+ []</p>
+ static: |-
+ <p data-sourcepos="1:1-2:2" dir="auto"><a class="no-attachment-icon" href="/url" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="foo" title="title" decoding="async" class="lazy" data-src="/url"></a>&#x000A;[]</p>
+ wysiwyg: |-
+ <p><img src="/url" alt="foo" title="title">
+ []</p>
+06_08__inlines__images__17:
+ canonical: |
+ <p><img src="/url" alt="foo" title="title" /></p>
+ static: |-
+ <p data-sourcepos="1:1-1:6" dir="auto"><a class="no-attachment-icon" href="/url" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="foo" title="title" decoding="async" class="lazy" data-src="/url"></a></p>
+ wysiwyg: |-
+ <p><img src="/url" alt="foo" title="title"></p>
+06_08__inlines__images__18:
+ canonical: |
+ <p><img src="/url" alt="foo bar" title="title" /></p>
+ static: |-
+ <p data-sourcepos="1:1-1:12" dir="auto"><a class="no-attachment-icon" href="/url" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="foo bar" title="title" decoding="async" class="lazy" data-src="/url"></a></p>
+ wysiwyg: |-
+ <p><img src="/url" alt="foo bar" title="title"></p>
+06_08__inlines__images__19:
+ canonical: |
+ <p>![[foo]]</p>
+ <p>[[foo]]: /url &quot;title&quot;</p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto">![[foo]]</p>&#x000A;<p data-sourcepos="3:1-3:21" dir="auto">[[foo]]: /url "title"</p>
+ wysiwyg: |-
+ <p>![[foo]]</p>
+06_08__inlines__images__20:
+ canonical: |
+ <p><img src="/url" alt="Foo" title="title" /></p>
+ static: |-
+ <p data-sourcepos="1:1-1:6" dir="auto"><a class="no-attachment-icon" href="/url" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Foo" title="title" decoding="async" class="lazy" data-src="/url"></a></p>
+ wysiwyg: |-
+ <p><img src="/url" alt="Foo" title="title"></p>
+06_08__inlines__images__21:
+ canonical: |
+ <p>![foo]</p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto">![foo]</p>
+ wysiwyg: |-
+ <p>![foo]</p>
+06_08__inlines__images__22:
+ canonical: |
+ <p>!<a href="/url" title="title">foo</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:27" dir="auto"><span>!</span><a href="/url" title="title">foo</a></p>
+ wysiwyg: |-
+ <p>!<a target="_blank" rel="noopener noreferrer nofollow" href="/url" title="title">foo</a></p>
+06_09__inlines__autolinks__01:
+ canonical: |
+ <p><a href="http://foo.bar.baz">http://foo.bar.baz</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:20" dir="auto"><a href="http://foo.bar.baz" rel="nofollow noreferrer noopener" target="_blank">http://foo.bar.baz</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="http://foo.bar.baz">http://foo.bar.baz</a></p>
+06_09__inlines__autolinks__02:
+ canonical: |
+ <p><a href="http://foo.bar.baz/test?q=hello&amp;id=22&amp;boolean">http://foo.bar.baz/test?q=hello&amp;id=22&amp;boolean</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:47" dir="auto"><a href="http://foo.bar.baz/test?q=hello&amp;id=22&amp;boolean" rel="nofollow noreferrer noopener" target="_blank">http://foo.bar.baz/test?q=hello&amp;id=22&amp;boolean</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="http://foo.bar.baz/test?q=hello&amp;id=22&amp;boolean">http://foo.bar.baz/test?q=hello&amp;id=22&amp;boolean</a></p>
+06_09__inlines__autolinks__03:
+ canonical: |
+ <p><a href="irc://foo.bar:2233/baz">irc://foo.bar:2233/baz</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:24" dir="auto"><a href="irc://foo.bar:2233/baz">irc://foo.bar:2233/baz</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="irc://foo.bar:2233/baz">irc://foo.bar:2233/baz</a></p>
+06_09__inlines__autolinks__04:
+ canonical: |
+ <p><a href="MAILTO:FOO@BAR.BAZ">MAILTO:FOO@BAR.BAZ</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:20" dir="auto"><a href="mailto:FOO@BAR.BAZ">MAILTO:FOO@BAR.BAZ</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="MAILTO:FOO@BAR.BAZ">MAILTO:FOO@BAR.BAZ</a></p>
+06_09__inlines__autolinks__05:
+ canonical: |
+ <p><a href="a+b+c:d">a+b+c:d</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:9" dir="auto"><a href="a+b+c:d">a+b+c:d</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="a+b+c:d">a+b+c:d</a></p>
+06_09__inlines__autolinks__06:
+ canonical: |
+ <p><a href="made-up-scheme://foo,bar">made-up-scheme://foo,bar</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:26" dir="auto"><a href="made-up-scheme://foo,bar">made-up-scheme://foo,bar</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="made-up-scheme://foo,bar">made-up-scheme://foo,bar</a></p>
+06_09__inlines__autolinks__07:
+ canonical: |
+ <p><a href="http://../">http://../</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:12" dir="auto"><a href="http://../" rel="nofollow noreferrer noopener" target="_blank">http://../</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="http://../">http://../</a></p>
+06_09__inlines__autolinks__08:
+ canonical: |
+ <p><a href="localhost:5001/foo">localhost:5001/foo</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:20" dir="auto"><a href="localhost:5001/foo">localhost:5001/foo</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="localhost:5001/foo">localhost:5001/foo</a></p>
+06_09__inlines__autolinks__09:
+ canonical: |
+ <p>&lt;http://foo.bar/baz bim&gt;</p>
+ static: |-
+ <p data-sourcepos="1:1-1:24" dir="auto">&lt;<a href="http://foo.bar/baz" rel="nofollow noreferrer noopener" target="_blank">http://foo.bar/baz</a> bim&gt;</p>
+ wysiwyg: |-
+ <p>&lt;http://foo.bar/baz bim&gt;</p>
+06_09__inlines__autolinks__10:
+ canonical: |
+ <p><a href="http://example.com/%5C%5B%5C">http://example.com/\[\</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:24" dir="auto"><a href="http://example.com/%5C%5B%5C" rel="nofollow noreferrer noopener" target="_blank">http://example.com/\[\</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="http://example.com/%5C%5B%5C">http://example.com/\[\</a></p>
+06_09__inlines__autolinks__11:
+ canonical: |
+ <p><a href="mailto:foo@bar.example.com">foo@bar.example.com</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:21" dir="auto"><a href="mailto:foo@bar.example.com">foo@bar.example.com</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="mailto:foo@bar.example.com">foo@bar.example.com</a></p>
+06_09__inlines__autolinks__12:
+ canonical: |
+ <p><a href="mailto:foo+special@Bar.baz-bar0.com">foo+special@Bar.baz-bar0.com</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:30" dir="auto"><a href="mailto:foo+special@Bar.baz-bar0.com">foo+special@Bar.baz-bar0.com</a></p>
+ wysiwyg: |-
+ <p><a target="_blank" rel="noopener noreferrer nofollow" href="mailto:foo+special@Bar.baz-bar0.com">foo+special@Bar.baz-bar0.com</a></p>
+06_09__inlines__autolinks__13:
+ canonical: |
+ <p>&lt;foo+@bar.example.com&gt;</p>
+ static: |-
+ <p data-sourcepos="1:1-1:23" dir="auto">&lt;<a href="mailto:foo+@bar.example.com">foo+@bar.example.com</a>&gt;</p>
+ wysiwyg: |-
+ <p>&lt;foo+@bar.example.com&gt;</p>
+06_09__inlines__autolinks__14:
+ canonical: |
+ <p>&lt;&gt;</p>
+ static: |-
+ <p data-sourcepos="1:1-1:2" dir="auto">&lt;&gt;</p>
+ wysiwyg: |-
+ <p>&lt;&gt;</p>
+06_09__inlines__autolinks__15:
+ canonical: |
+ <p>&lt; http://foo.bar &gt;</p>
+ static: |-
+ <p data-sourcepos="1:1-1:18" dir="auto">&lt; <a href="http://foo.bar" rel="nofollow noreferrer noopener" target="_blank">http://foo.bar</a> &gt;</p>
+ wysiwyg: |-
+ <p>&lt; http://foo.bar &gt;</p>
+06_09__inlines__autolinks__16:
+ canonical: |
+ <p>&lt;m:abc&gt;</p>
+ static: |-
+ <p data-sourcepos="1:1-1:7" dir="auto">&lt;m:abc&gt;</p>
+ wysiwyg: |-
+ <p>&lt;m:abc&gt;</p>
+06_09__inlines__autolinks__17:
+ canonical: |
+ <p>&lt;foo.bar.baz&gt;</p>
+ static: |-
+ <p data-sourcepos="1:1-1:13" dir="auto">&lt;foo.bar.baz&gt;</p>
+ wysiwyg: |-
+ <p>&lt;foo.bar.baz&gt;</p>
+06_09__inlines__autolinks__18:
+ canonical: |
+ <p>http://example.com</p>
+ static: |-
+ <p data-sourcepos="1:1-1:18" dir="auto"><a href="http://example.com" rel="nofollow noreferrer noopener" target="_blank">http://example.com</a></p>
+ wysiwyg: |-
+ <p>http://example.com</p>
+06_09__inlines__autolinks__19:
+ canonical: |
+ <p>foo@bar.example.com</p>
+ static: |-
+ <p data-sourcepos="1:1-1:19" dir="auto"><a href="mailto:foo@bar.example.com">foo@bar.example.com</a></p>
+ wysiwyg: |-
+ <p>foo@bar.example.com</p>
+06_10__inlines__autolinks_extension__01:
+ canonical: |
+ <p><a href="http://www.commonmark.org">www.commonmark.org</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:18" dir="auto"><a href="http://www.commonmark.org" rel="nofollow noreferrer noopener" target="_blank">www.commonmark.org</a></p>
+ wysiwyg: |-
+ <p>www.commonmark.org</p>
+06_10__inlines__autolinks_extension__02:
+ canonical: |
+ <p>Visit <a href="http://www.commonmark.org/help">www.commonmark.org/help</a> for more information.</p>
+ static: |-
+ <p data-sourcepos="1:1-1:51" dir="auto">Visit <a href="http://www.commonmark.org/help" rel="nofollow noreferrer noopener" target="_blank">www.commonmark.org/help</a> for more information.</p>
+ wysiwyg: |-
+ <p>Visit www.commonmark.org/help for more information.</p>
+06_10__inlines__autolinks_extension__03:
+ canonical: |
+ <p>Visit <a href="http://www.commonmark.org">www.commonmark.org</a>.</p>
+ <p>Visit <a href="http://www.commonmark.org/a.b">www.commonmark.org/a.b</a>.</p>
+ static: |-
+ <p data-sourcepos="1:1-1:25" dir="auto">Visit <a href="http://www.commonmark.org" rel="nofollow noreferrer noopener" target="_blank">www.commonmark.org</a>.</p>&#x000A;<p data-sourcepos="3:1-3:29" dir="auto">Visit <a href="http://www.commonmark.org/a.b" rel="nofollow noreferrer noopener" target="_blank">www.commonmark.org/a.b</a>.</p>
+ wysiwyg: |-
+ <p>Visit www.commonmark.org.</p>
+06_10__inlines__autolinks_extension__04:
+ canonical: |
+ <p><a href="http://www.google.com/search?q=Markup+(business)">www.google.com/search?q=Markup+(business)</a></p>
+ <p><a href="http://www.google.com/search?q=Markup+(business)">www.google.com/search?q=Markup+(business)</a>))</p>
+ <p>(<a href="http://www.google.com/search?q=Markup+(business)">www.google.com/search?q=Markup+(business)</a>)</p>
+ <p>(<a href="http://www.google.com/search?q=Markup+(business)">www.google.com/search?q=Markup+(business)</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:41" dir="auto"><a href="http://www.google.com/search?q=Markup+(business)" rel="nofollow noreferrer noopener" target="_blank">www.google.com/search?q=Markup+(business)</a></p>&#x000A;<p data-sourcepos="3:1-3:43" dir="auto"><a href="http://www.google.com/search?q=Markup+(business)" rel="nofollow noreferrer noopener" target="_blank">www.google.com/search?q=Markup+(business)</a>))</p>&#x000A;<p data-sourcepos="5:1-5:43" dir="auto">(<a href="http://www.google.com/search?q=Markup+(business)" rel="nofollow noreferrer noopener" target="_blank">www.google.com/search?q=Markup+(business)</a>)</p>&#x000A;<p data-sourcepos="7:1-7:42" dir="auto">(<a href="http://www.google.com/search?q=Markup+(business)" rel="nofollow noreferrer noopener" target="_blank">www.google.com/search?q=Markup+(business)</a></p>
+ wysiwyg: |-
+ <p>www.google.com/search?q=Markup+(business)</p>
+06_10__inlines__autolinks_extension__05:
+ canonical: |
+ <p><a href="http://www.google.com/search?q=(business))+ok">www.google.com/search?q=(business))+ok</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:38" dir="auto"><a href="http://www.google.com/search?q=(business))+ok" rel="nofollow noreferrer noopener" target="_blank">www.google.com/search?q=(business))+ok</a></p>
+ wysiwyg: |-
+ <p>www.google.com/search?q=(business))+ok</p>
+06_10__inlines__autolinks_extension__06:
+ canonical: |
+ <p><a href="http://www.google.com/search?q=commonmark&amp;hl=en">www.google.com/search?q=commonmark&amp;hl=en</a></p>
+ <p><a href="http://www.google.com/search?q=commonmark">www.google.com/search?q=commonmark</a>&amp;hl;</p>
+ static: |-
+ <p data-sourcepos="1:1-1:40" dir="auto"><a href="http://www.google.com/search?q=commonmark&amp;hl=en" rel="nofollow noreferrer noopener" target="_blank">www.google.com/search?q=commonmark&amp;hl=en</a></p>&#x000A;<p data-sourcepos="3:1-3:38" dir="auto"><a href="http://www.google.com/search?q=commonmark" rel="nofollow noreferrer noopener" target="_blank">www.google.com/search?q=commonmark</a>&amp;hl;</p>
+ wysiwyg: |-
+ <p>www.google.com/search?q=commonmark&amp;hl=en</p>
+06_10__inlines__autolinks_extension__07:
+ canonical: |
+ <p><a href="http://www.commonmark.org/he">www.commonmark.org/he</a>&lt;lp</p>
+ static: |-
+ <p data-sourcepos="1:1-1:24" dir="auto"><a href="http://www.commonmark.org/he" rel="nofollow noreferrer noopener" target="_blank">www.commonmark.org/he</a>&lt;lp</p>
+ wysiwyg: |-
+ <p>www.commonmark.org/he&lt;lp</p>
+06_10__inlines__autolinks_extension__08:
+ canonical: |
+ <p><a href="http://commonmark.org">http://commonmark.org</a></p>
+ <p>(Visit <a href="https://encrypted.google.com/search?q=Markup+(business)">https://encrypted.google.com/search?q=Markup+(business)</a>)</p>
+ <p>Anonymous FTP is available at <a href="ftp://foo.bar.baz">ftp://foo.bar.baz</a>.</p>
+ static: |-
+ <p data-sourcepos="1:1-1:21" dir="auto"><a href="http://commonmark.org" rel="nofollow noreferrer noopener" target="_blank">http://commonmark.org</a></p>&#x000A;<p data-sourcepos="3:1-3:63" dir="auto">(Visit <a href="https://encrypted.google.com/search?q=Markup+(business)" rel="nofollow noreferrer noopener" target="_blank">https://encrypted.google.com/search?q=Markup+(business)</a>)</p>&#x000A;<p data-sourcepos="5:1-5:48" dir="auto">Anonymous FTP is available at <a href="ftp://foo.bar.baz/">ftp://foo.bar.baz</a>.</p>
+ wysiwyg: |-
+ <p>http://commonmark.org</p>
+06_10__inlines__autolinks_extension__09:
+ canonical: |
+ <p><a href="mailto:foo@bar.baz">foo@bar.baz</a></p>
+ static: |-
+ <p data-sourcepos="1:1-1:11" dir="auto"><a href="mailto:foo@bar.baz">foo@bar.baz</a></p>
+ wysiwyg: |-
+ <p>foo@bar.baz</p>
+06_10__inlines__autolinks_extension__10:
+ canonical: |
+ <p>hello@mail+xyz.example isn't valid, but <a href="mailto:hello+xyz@mail.example">hello+xyz@mail.example</a> is.</p>
+ static: |-
+ <p data-sourcepos="1:1-1:66" dir="auto">hello@mail+xyz.example isn't valid, but <a href="mailto:hello+xyz@mail.example">hello+xyz@mail.example</a> is.</p>
+ wysiwyg: |-
+ <p>hello@mail+xyz.example isn't valid, but hello+xyz@mail.example is.</p>
+06_10__inlines__autolinks_extension__11:
+ canonical: |
+ <p><a href="mailto:a.b-c_d@a.b">a.b-c_d@a.b</a></p>
+ <p><a href="mailto:a.b-c_d@a.b">a.b-c_d@a.b</a>.</p>
+ <p>a.b-c_d@a.b-</p>
+ <p>a.b-c_d@a.b_</p>
+ static: |-
+ <p data-sourcepos="1:1-1:11" dir="auto"><a href="mailto:a.b-c_d@a.b">a.b-c_d@a.b</a></p>&#x000A;<p data-sourcepos="3:1-3:12" dir="auto"><a href="mailto:a.b-c_d@a.b">a.b-c_d@a.b</a>.</p>&#x000A;<p data-sourcepos="5:1-5:12" dir="auto">a.b-c_d@a.b-</p>&#x000A;<p data-sourcepos="7:1-7:12" dir="auto">a.b-c_d@a.b_</p>
+ wysiwyg: |-
+ <p>a.b-c_d@a.b</p>
+06_11__inlines__raw_html__01:
+ canonical: |
+ <p><a><bab><c2c></p>
+ static: |-
+ <p data-sourcepos="1:1-1:13" dir="auto"><a></a></p>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "bab" not supported by this converter. Please, provide an specification.
+06_11__inlines__raw_html__02:
+ canonical: |
+ <p><a/><b2/></p>
+ static: |-
+ <p data-sourcepos="1:1-1:9" dir="auto"><a></a></p>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "b2" not supported by this converter. Please, provide an specification.
+06_11__inlines__raw_html__03:
+ canonical: |
+ <p><a /><b2
+ data="foo" ></p>
+ static: |-
+ <p data-sourcepos="1:1-2:12" dir="auto"><a></a></p>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "b2" not supported by this converter. Please, provide an specification.
+06_11__inlines__raw_html__04:
+ canonical: |
+ <p><a foo="bar" bam = 'baz <em>"</em>'
+ _boolean zoop:33=zoop:33 /></p>
+ static: |-
+ <p data-sourcepos="1:1-2:27" dir="auto"><a></a></p>
+ wysiwyg: |-
+ <p></p>
+06_11__inlines__raw_html__05:
+ canonical: |
+ <p>Foo <responsive-image src="foo.jpg" /></p>
+ static: |-
+ <p data-sourcepos="1:1-1:38" dir="auto">Foo </p>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "responsive-image" not supported by this converter. Please, provide an specification.
+06_11__inlines__raw_html__06:
+ canonical: |
+ <p>&lt;33&gt; &lt;__&gt;</p>
+ static: |-
+ <p data-sourcepos="1:1-1:9" dir="auto">&lt;33&gt; &lt;__&gt;</p>
+ wysiwyg: |-
+ <p>&lt;33&gt; &lt;__&gt;</p>
+06_11__inlines__raw_html__07:
+ canonical: |
+ <p>&lt;a h*#ref=&quot;hi&quot;&gt;</p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto">&lt;a h*#ref="hi"&gt;</p>
+ wysiwyg: |-
+ <p>&lt;a h*#ref="hi"&gt;</p>
+06_11__inlines__raw_html__08:
+ canonical: |
+ <p>&lt;a href=&quot;hi'&gt; &lt;a href=hi'&gt;</p>
+ static: |-
+ <p data-sourcepos="1:1-1:26" dir="auto">&lt;a href="hi'&gt; &lt;a href=hi'&gt;</p>
+ wysiwyg: |-
+ <p>&lt;a href="hi'&gt; &lt;a href=hi'&gt;</p>
+06_11__inlines__raw_html__09:
+ canonical: |
+ <p>&lt; a&gt;&lt;
+ foo&gt;&lt;bar/ &gt;
+ &lt;foo bar=baz
+ bim!bop /&gt;</p>
+ static: |-
+ <p data-sourcepos="1:1-4:10" dir="auto">&lt; a&gt;&lt;&#x000A;foo&gt;&lt;bar/ &gt;&#x000A;&lt;foo bar=baz&#x000A;bim!bop /&gt;</p>
+ wysiwyg: |-
+ <p>&lt; a&gt;&lt;
+ foo&gt;&lt;bar/ &gt;
+ &lt;foo bar=baz
+ bim!bop /&gt;</p>
+06_11__inlines__raw_html__10:
+ canonical: |
+ <p>&lt;a href='bar'title=title&gt;</p>
+ static: |-
+ <p data-sourcepos="1:1-1:25" dir="auto">&lt;a href='bar'title=title&gt;</p>
+ wysiwyg: |-
+ <p>&lt;a href='bar'title=title&gt;</p>
+06_11__inlines__raw_html__11:
+ canonical: |
+ <p></a></foo ></p>
+ static: |-
+ <p data-sourcepos="1:1-1:11" dir="auto"></p>
+ wysiwyg: |-
+ <p></p>
+06_11__inlines__raw_html__12:
+ canonical: |
+ <p>&lt;/a href=&quot;foo&quot;&gt;</p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto">&lt;/a href="foo"&gt;</p>
+ wysiwyg: |-
+ <p>&lt;/a href="foo"&gt;</p>
+06_11__inlines__raw_html__13:
+ canonical: |
+ <p>foo <!-- this is a
+ comment - with hyphen --></p>
+ static: |-
+ <p data-sourcepos="1:1-2:25" dir="auto">foo </p>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "comment" not supported by this converter. Please, provide an specification.
+06_11__inlines__raw_html__14:
+ canonical: |
+ <p>foo &lt;!-- not a comment -- two hyphens --&gt;</p>
+ static: |-
+ <p data-sourcepos="1:1-1:41" dir="auto">foo &lt;!-- not a comment -- two hyphens --&gt;</p>
+ wysiwyg: |-
+ <p>foo &lt;!-- not a comment -- two hyphens --&gt;</p>
+06_11__inlines__raw_html__15:
+ canonical: |
+ <p>foo &lt;!--&gt; foo --&gt;</p>
+ <p>foo &lt;!-- foo---&gt;</p>
+ static: |-
+ <p data-sourcepos="1:1-1:17" dir="auto">foo &lt;!--&gt; foo --&gt;</p>&#x000A;<p data-sourcepos="3:1-3:16" dir="auto">foo &lt;!-- foo---&gt;</p>
+ wysiwyg: |-
+ <p>foo &lt;!--&gt; foo --&gt;</p>
+06_11__inlines__raw_html__16:
+ canonical: |
+ <p>foo <?php echo $a; ?></p>
+ static: |-
+ <p data-sourcepos="1:1-1:21" dir="auto">foo <?php echo $a; ?></p>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "comment" not supported by this converter. Please, provide an specification.
+06_11__inlines__raw_html__17:
+ canonical: |
+ <p>foo <!ELEMENT br EMPTY></p>
+ static: |-
+ <p data-sourcepos="1:1-1:23" dir="auto">foo </p>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "comment" not supported by this converter. Please, provide an specification.
+06_11__inlines__raw_html__18:
+ canonical: |
+ <p>foo <![CDATA[>&<]]></p>
+ static: |-
+ <p data-sourcepos="1:1-1:19" dir="auto">foo &amp;</p>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "comment" not supported by this converter. Please, provide an specification.
+06_11__inlines__raw_html__19:
+ canonical: |
+ <p>foo <a href="&ouml;"></p>
+ static: |-
+ <p data-sourcepos="1:1-1:21" dir="auto">foo <a href="%C3%B6" rel="nofollow noreferrer noopener" target="_blank"></a></p>
+ wysiwyg: |-
+ <p>foo </p>
+06_11__inlines__raw_html__20:
+ canonical: |
+ <p>foo <a href="\*"></p>
+ static: |-
+ <p data-sourcepos="1:1-1:17" dir="auto">foo <a href="%5C*" rel="nofollow noreferrer noopener" target="_blank"></a></p>
+ wysiwyg: |-
+ <p>foo </p>
+06_11__inlines__raw_html__21:
+ canonical: |
+ <p>&lt;a href=&quot;&quot;&quot;&gt;</p>
+ static: |-
+ <p data-sourcepos="1:1-1:13" dir="auto">&lt;a href="""&gt;</p>
+ wysiwyg: |-
+ <p>&lt;a href="""&gt;</p>
+06_12__inlines__disallowed_raw_html_extension__01:
+ canonical: |
+ <p><strong> &lt;title> &lt;style> <em></p>
+ <blockquote>
+ &lt;xmp> is disallowed. &lt;XMP> is also disallowed.
+ </blockquote>
+ static: |-
+ <p data-sourcepos="1:1-1:29" dir="auto"><strong> &lt;em&gt;&lt;/p&gt;&#x000A;&lt;blockquote&gt;&#x000A; &lt;xmp&gt; is disallowed. &lt;XMP&gt; is also disallowed.&#x000A;&lt;/blockquote&gt;</strong></p>
+ wysiwyg: |-
+ Error - check implementation:
+ Hast node of type "title" not supported by this converter. Please, provide an specification.
+06_13__inlines__hard_line_breaks__01:
+ canonical: |
+ <p>foo<br />
+ baz</p>
+ static: |-
+ <p data-sourcepos="1:1-2:3" dir="auto">foo<br>&#x000A;baz</p>
+ wysiwyg: |-
+ <p>foo<br>
+ baz</p>
+06_13__inlines__hard_line_breaks__02:
+ canonical: |
+ <p>foo<br />
+ baz</p>
+ static: |-
+ <p data-sourcepos="1:1-2:3" dir="auto">foo<br>&#x000A;baz</p>
+ wysiwyg: |-
+ <p>foo<br>
+ baz</p>
+06_13__inlines__hard_line_breaks__03:
+ canonical: |
+ <p>foo<br />
+ baz</p>
+ static: |-
+ <p data-sourcepos="1:1-2:3" dir="auto">foo<br>&#x000A;baz</p>
+ wysiwyg: |-
+ <p>foo<br>
+ baz</p>
+06_13__inlines__hard_line_breaks__04:
+ canonical: |
+ <p>foo<br />
+ bar</p>
+ static: |-
+ <p data-sourcepos="1:1-2:8" dir="auto">foo<br>&#x000A;bar</p>
+ wysiwyg: |-
+ <p>foo<br>
+ bar</p>
+06_13__inlines__hard_line_breaks__05:
+ canonical: |
+ <p>foo<br />
+ bar</p>
+ static: |-
+ <p data-sourcepos="1:1-2:8" dir="auto">foo<br>&#x000A;bar</p>
+ wysiwyg: |-
+ <p>foo<br>
+ bar</p>
+06_13__inlines__hard_line_breaks__06:
+ canonical: |
+ <p><em>foo<br />
+ bar</em></p>
+ static: |-
+ <p data-sourcepos="1:1-2:4" dir="auto"><em>foo<br>&#x000A;bar</em></p>
+ wysiwyg: |-
+ Error - check implementation:
+ Cannot destructure property 'type' of 'this.stack.pop(...)' as it is undefined.
+06_13__inlines__hard_line_breaks__07:
+ canonical: |
+ <p><em>foo<br />
+ bar</em></p>
+ static: |-
+ <p data-sourcepos="1:1-2:4" dir="auto"><em>foo<br>&#x000A;bar</em></p>
+ wysiwyg: |-
+ Error - check implementation:
+ Cannot destructure property 'type' of 'this.stack.pop(...)' as it is undefined.
+06_13__inlines__hard_line_breaks__08:
+ canonical: |
+ <p><code>code span</code></p>
+ static: |-
+ <p data-sourcepos="1:1-2:5" dir="auto"><code>code span</code></p>
+ wysiwyg: |-
+ <p><code>code span</code></p>
+06_13__inlines__hard_line_breaks__09:
+ canonical: |
+ <p><code>code\ span</code></p>
+ static: |-
+ <p data-sourcepos="1:1-2:5" dir="auto"><code>code\ span</code></p>
+ wysiwyg: |-
+ <p><code>code\ span</code></p>
+06_13__inlines__hard_line_breaks__10:
+ canonical: "<p><a href=\"foo \nbar\"></p>\n"
+ static: |-
+ <p data-sourcepos="1:1-2:5" dir="auto"><a href="foo%20%20%0Abar" rel="nofollow noreferrer noopener" target="_blank"></a></p>
+ wysiwyg: |-
+ <p></p>
+06_13__inlines__hard_line_breaks__11:
+ canonical: |
+ <p><a href="foo\
+ bar"></p>
+ static: |-
+ <p data-sourcepos="1:1-2:5" dir="auto"><a href="foo%5C%0Abar" rel="nofollow noreferrer noopener" target="_blank"></a></p>
+ wysiwyg: |-
+ <p></p>
+06_13__inlines__hard_line_breaks__12:
+ canonical: |
+ <p>foo\</p>
+ static: |-
+ <p data-sourcepos="1:1-1:4" dir="auto">foo\</p>
+ wysiwyg: |-
+ <p>foo\</p>
+06_13__inlines__hard_line_breaks__13:
+ canonical: |
+ <p>foo</p>
+ static: |-
+ <p data-sourcepos="1:1-1:5" dir="auto">foo</p>
+ wysiwyg: |-
+ <p>foo</p>
+06_13__inlines__hard_line_breaks__14:
+ canonical: |
+ <h3>foo\</h3>
+ static: |-
+ <h3 data-sourcepos="1:1-1:8" dir="auto">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>foo\</h3>
+ wysiwyg: |-
+ <h3>foo\</h3>
+06_13__inlines__hard_line_breaks__15:
+ canonical: |
+ <h3>foo</h3>
+ static: |-
+ <h3 data-sourcepos="1:1-1:7" dir="auto">&#x000A;<a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>foo</h3>
+ wysiwyg: |-
+ <h3>foo</h3>
+06_14__inlines__soft_line_breaks__01:
+ canonical: |
+ <p>foo
+ baz</p>
+ static: |-
+ <p data-sourcepos="1:1-2:3" dir="auto">foo&#x000A;baz</p>
+ wysiwyg: |-
+ <p>foo
+ baz</p>
+06_14__inlines__soft_line_breaks__02:
+ canonical: |
+ <p>foo
+ baz</p>
+ static: |-
+ <p data-sourcepos="1:1-2:4" dir="auto">foo&#x000A;baz</p>
+ wysiwyg: |-
+ <p>foo
+ baz</p>
+06_15__inlines__textual_content__01:
+ canonical: |
+ <p>hello $.;'there</p>
+ static: |-
+ <p data-sourcepos="1:1-1:15" dir="auto">hello $.;'there</p>
+ wysiwyg: |-
+ <p>hello $.;'there</p>
+06_15__inlines__textual_content__02:
+ canonical: |
+ <p>Foo χρῆν</p>
+ static: |-
+ <p data-sourcepos="1:1-1:13" dir="auto">Foo χρῆν</p>
+ wysiwyg: |-
+ <p>Foo χρῆν</p>
+06_15__inlines__textual_content__03:
+ canonical: |
+ <p>Multiple spaces</p>
+ static: |-
+ <p data-sourcepos="1:1-1:19" dir="auto">Multiple spaces</p>
+ wysiwyg: |-
+ <p>Multiple spaces</p>
+07_01__first_gitlab_specific_section_with_examples__strong_but_with_two_asterisks__01:
+ canonical: |
+ <p><strong>bold</strong></p>
+ static: |-
+ <p data-sourcepos="1:1-1:8" dir="auto"><strong>bold</strong></p>
+ wysiwyg: |-
+ <p><strong>bold</strong></p>
+08_01__second_gitlab_specific_section_with_examples__strong_but_with_html__01:
+ canonical: |
+ <p><strong>
+ bold
+ </strong></p>
+ static: |-
+ <strong>&#x000A;bold&#x000A;</strong>
+ wysiwyg: |-
+ Error - check implementation:
+ Cannot read properties of undefined (reading 'wrapTextInParagraph')
diff --git a/spec/fixtures/glfm/example_snapshots/markdown.yml b/spec/fixtures/glfm/example_snapshots/markdown.yml
new file mode 100644
index 00000000000..8232b158050
--- /dev/null
+++ b/spec/fixtures/glfm/example_snapshots/markdown.yml
@@ -0,0 +1,2203 @@
+---
+02_01__preliminaries__tabs__01: "\tfoo\tbaz\t\tbim\n"
+02_01__preliminaries__tabs__02: " \tfoo\tbaz\t\tbim\n"
+02_01__preliminaries__tabs__03: " a\ta\n ὐ\ta\n"
+02_01__preliminaries__tabs__04: " - foo\n\n\tbar\n"
+02_01__preliminaries__tabs__05: "- foo\n\n\t\tbar\n"
+02_01__preliminaries__tabs__06: ">\t\tfoo\n"
+02_01__preliminaries__tabs__07: "-\t\tfoo\n"
+02_01__preliminaries__tabs__08: " foo\n\tbar\n"
+02_01__preliminaries__tabs__09: " - foo\n - bar\n\t - baz\n"
+02_01__preliminaries__tabs__10: "#\tFoo\n"
+02_01__preliminaries__tabs__11: "*\t*\t*\t\n"
+03_01__blocks_and_inlines__precedence__01: |
+ - `one
+ - two`
+04_01__leaf_blocks__thematic_breaks__01: |
+ ***
+ ---
+ ___
+04_01__leaf_blocks__thematic_breaks__02: |
+ +++
+04_01__leaf_blocks__thematic_breaks__03: |
+ ===
+04_01__leaf_blocks__thematic_breaks__04: |
+ --
+ **
+ __
+04_01__leaf_blocks__thematic_breaks__05: |2
+ ***
+ ***
+ ***
+04_01__leaf_blocks__thematic_breaks__06: |2
+ ***
+04_01__leaf_blocks__thematic_breaks__07: |
+ Foo
+ ***
+04_01__leaf_blocks__thematic_breaks__08: |
+ _____________________________________
+04_01__leaf_blocks__thematic_breaks__09: |2
+ - - -
+04_01__leaf_blocks__thematic_breaks__10: |2
+ ** * ** * ** * **
+04_01__leaf_blocks__thematic_breaks__11: |
+ - - - -
+04_01__leaf_blocks__thematic_breaks__12: "- - - - \n"
+04_01__leaf_blocks__thematic_breaks__13: |
+ _ _ _ _ a
+
+ a------
+
+ ---a---
+04_01__leaf_blocks__thematic_breaks__14: |2
+ *-*
+04_01__leaf_blocks__thematic_breaks__15: |
+ - foo
+ ***
+ - bar
+04_01__leaf_blocks__thematic_breaks__16: |
+ Foo
+ ***
+ bar
+04_01__leaf_blocks__thematic_breaks__17: |
+ Foo
+ ---
+ bar
+04_01__leaf_blocks__thematic_breaks__18: |
+ * Foo
+ * * *
+ * Bar
+04_01__leaf_blocks__thematic_breaks__19: |
+ - Foo
+ - * * *
+04_02__leaf_blocks__atx_headings__01: |
+ # foo
+ ## foo
+ ### foo
+ #### foo
+ ##### foo
+ ###### foo
+04_02__leaf_blocks__atx_headings__02: |
+ ####### foo
+04_02__leaf_blocks__atx_headings__03: |
+ #5 bolt
+
+ #hashtag
+04_02__leaf_blocks__atx_headings__04: |
+ \## foo
+04_02__leaf_blocks__atx_headings__05: |
+ # foo *bar* \*baz\*
+04_02__leaf_blocks__atx_headings__06: "# foo \n"
+04_02__leaf_blocks__atx_headings__07: |2
+ ### foo
+ ## foo
+ # foo
+04_02__leaf_blocks__atx_headings__08: |2
+ # foo
+04_02__leaf_blocks__atx_headings__09: |
+ foo
+ # bar
+04_02__leaf_blocks__atx_headings__10: |
+ ## foo ##
+ ### bar ###
+04_02__leaf_blocks__atx_headings__11: |
+ # foo ##################################
+ ##### foo ##
+04_02__leaf_blocks__atx_headings__12: "### foo ### \n"
+04_02__leaf_blocks__atx_headings__13: |
+ ### foo ### b
+04_02__leaf_blocks__atx_headings__14: |
+ # foo#
+04_02__leaf_blocks__atx_headings__15: |
+ ### foo \###
+ ## foo #\##
+ # foo \#
+04_02__leaf_blocks__atx_headings__16: |
+ ****
+ ## foo
+ ****
+04_02__leaf_blocks__atx_headings__17: |
+ Foo bar
+ # baz
+ Bar foo
+04_02__leaf_blocks__atx_headings__18: "## \n#\n### ###\n"
+04_03__leaf_blocks__setext_headings__01: |
+ Foo *bar*
+ =========
+
+ Foo *bar*
+ ---------
+04_03__leaf_blocks__setext_headings__02: |
+ Foo *bar
+ baz*
+ ====
+04_03__leaf_blocks__setext_headings__03: " Foo *bar\nbaz*\t\n====\n"
+04_03__leaf_blocks__setext_headings__04: |
+ Foo
+ -------------------------
+
+ Foo
+ =
+04_03__leaf_blocks__setext_headings__05: |2
+ Foo
+ ---
+
+ Foo
+ -----
+
+ Foo
+ ===
+04_03__leaf_blocks__setext_headings__06: |2
+ Foo
+ ---
+
+ Foo
+ ---
+04_03__leaf_blocks__setext_headings__07: "Foo\n ---- \n"
+04_03__leaf_blocks__setext_headings__08: |
+ Foo
+ ---
+04_03__leaf_blocks__setext_headings__09: |
+ Foo
+ = =
+
+ Foo
+ --- -
+04_03__leaf_blocks__setext_headings__10: "Foo \n-----\n"
+04_03__leaf_blocks__setext_headings__11: |
+ Foo\
+ ----
+04_03__leaf_blocks__setext_headings__12: |
+ `Foo
+ ----
+ `
+
+ <a title="a lot
+ ---
+ of dashes"/>
+04_03__leaf_blocks__setext_headings__13: |
+ > Foo
+ ---
+04_03__leaf_blocks__setext_headings__14: |
+ > foo
+ bar
+ ===
+04_03__leaf_blocks__setext_headings__15: |
+ - Foo
+ ---
+04_03__leaf_blocks__setext_headings__16: |
+ Foo
+ Bar
+ ---
+04_03__leaf_blocks__setext_headings__17: |
+ ---
+ Foo
+ ---
+ Bar
+ ---
+ Baz
+04_03__leaf_blocks__setext_headings__18: |2
+
+ ====
+04_03__leaf_blocks__setext_headings__19: |
+ ---
+ ---
+04_03__leaf_blocks__setext_headings__20: |
+ - foo
+ -----
+04_03__leaf_blocks__setext_headings__21: |2
+ foo
+ ---
+04_03__leaf_blocks__setext_headings__22: |
+ > foo
+ -----
+04_03__leaf_blocks__setext_headings__23: |
+ \> foo
+ ------
+04_03__leaf_blocks__setext_headings__24: |
+ Foo
+
+ bar
+ ---
+ baz
+04_03__leaf_blocks__setext_headings__25: |
+ Foo
+ bar
+
+ ---
+
+ baz
+04_03__leaf_blocks__setext_headings__26: |
+ Foo
+ bar
+ * * *
+ baz
+04_03__leaf_blocks__setext_headings__27: |
+ Foo
+ bar
+ \---
+ baz
+04_04__leaf_blocks__indented_code_blocks__01: |2
+ a simple
+ indented code block
+04_04__leaf_blocks__indented_code_blocks__02: |2
+ - foo
+
+ bar
+04_04__leaf_blocks__indented_code_blocks__03: |
+ 1. foo
+
+ - bar
+04_04__leaf_blocks__indented_code_blocks__04: |2
+ <a/>
+ *hi*
+
+ - one
+04_04__leaf_blocks__indented_code_blocks__05: " chunk1\n\n chunk2\n \n \n \n
+ \ chunk3\n"
+04_04__leaf_blocks__indented_code_blocks__06: " chunk1\n \n chunk2\n"
+04_04__leaf_blocks__indented_code_blocks__07: |+
+ Foo
+ bar
+
+04_04__leaf_blocks__indented_code_blocks__08: |2
+ foo
+ bar
+04_04__leaf_blocks__indented_code_blocks__09: |
+ # Heading
+ foo
+ Heading
+ ------
+ foo
+ ----
+04_04__leaf_blocks__indented_code_blocks__10: |2
+ foo
+ bar
+04_04__leaf_blocks__indented_code_blocks__11: "\n \n foo\n \n\n"
+04_04__leaf_blocks__indented_code_blocks__12: " foo \n"
+04_05__leaf_blocks__fenced_code_blocks__01: |
+ ```
+ <
+ >
+ ```
+04_05__leaf_blocks__fenced_code_blocks__02: |
+ ~~~
+ <
+ >
+ ~~~
+04_05__leaf_blocks__fenced_code_blocks__03: |
+ ``
+ foo
+ ``
+04_05__leaf_blocks__fenced_code_blocks__04: |
+ ```
+ aaa
+ ~~~
+ ```
+04_05__leaf_blocks__fenced_code_blocks__05: |
+ ~~~
+ aaa
+ ```
+ ~~~
+04_05__leaf_blocks__fenced_code_blocks__06: |
+ ````
+ aaa
+ ```
+ ``````
+04_05__leaf_blocks__fenced_code_blocks__07: |
+ ~~~~
+ aaa
+ ~~~
+ ~~~~
+04_05__leaf_blocks__fenced_code_blocks__08: |
+ ```
+04_05__leaf_blocks__fenced_code_blocks__09: |
+ `````
+
+ ```
+ aaa
+04_05__leaf_blocks__fenced_code_blocks__10: |
+ > ```
+ > aaa
+
+ bbb
+04_05__leaf_blocks__fenced_code_blocks__11: "```\n\n \n```\n"
+04_05__leaf_blocks__fenced_code_blocks__12: |
+ ```
+ ```
+04_05__leaf_blocks__fenced_code_blocks__13: |2
+ ```
+ aaa
+ aaa
+ ```
+04_05__leaf_blocks__fenced_code_blocks__14: |2
+ ```
+ aaa
+ aaa
+ aaa
+ ```
+04_05__leaf_blocks__fenced_code_blocks__15: |2
+ ```
+ aaa
+ aaa
+ aaa
+ ```
+04_05__leaf_blocks__fenced_code_blocks__16: |2
+ ```
+ aaa
+ ```
+04_05__leaf_blocks__fenced_code_blocks__17: |
+ ```
+ aaa
+ ```
+04_05__leaf_blocks__fenced_code_blocks__18: |2
+ ```
+ aaa
+ ```
+04_05__leaf_blocks__fenced_code_blocks__19: |
+ ```
+ aaa
+ ```
+04_05__leaf_blocks__fenced_code_blocks__20: |
+ ``` ```
+ aaa
+04_05__leaf_blocks__fenced_code_blocks__21: |
+ ~~~~~~
+ aaa
+ ~~~ ~~
+04_05__leaf_blocks__fenced_code_blocks__22: |
+ foo
+ ```
+ bar
+ ```
+ baz
+04_05__leaf_blocks__fenced_code_blocks__23: |
+ foo
+ ---
+ ~~~
+ bar
+ ~~~
+ # baz
+04_05__leaf_blocks__fenced_code_blocks__24: |
+ ```ruby
+ def foo(x)
+ return 3
+ end
+ ```
+04_05__leaf_blocks__fenced_code_blocks__25: |
+ ~~~~ ruby startline=3 $%@#$
+ def foo(x)
+ return 3
+ end
+ ~~~~~~~
+04_05__leaf_blocks__fenced_code_blocks__26: |
+ ````;
+ ````
+04_05__leaf_blocks__fenced_code_blocks__27: |
+ ``` aa ```
+ foo
+04_05__leaf_blocks__fenced_code_blocks__28: |
+ ~~~ aa ``` ~~~
+ foo
+ ~~~
+04_05__leaf_blocks__fenced_code_blocks__29: |
+ ```
+ ``` aaa
+ ```
+04_06__leaf_blocks__html_blocks__01: |
+ <table><tr><td>
+ <pre>
+ **Hello**,
+
+ _world_.
+ </pre>
+ </td></tr></table>
+04_06__leaf_blocks__html_blocks__02: |
+ <table>
+ <tr>
+ <td>
+ hi
+ </td>
+ </tr>
+ </table>
+
+ okay.
+04_06__leaf_blocks__html_blocks__03: |2
+ <div>
+ *hello*
+ <foo><a>
+04_06__leaf_blocks__html_blocks__04: |
+ </div>
+ *foo*
+04_06__leaf_blocks__html_blocks__05: |
+ <DIV CLASS="foo">
+
+ *Markdown*
+
+ </DIV>
+04_06__leaf_blocks__html_blocks__06: |
+ <div id="foo"
+ class="bar">
+ </div>
+04_06__leaf_blocks__html_blocks__07: |
+ <div id="foo" class="bar
+ baz">
+ </div>
+04_06__leaf_blocks__html_blocks__08: |
+ <div>
+ *foo*
+
+ *bar*
+04_06__leaf_blocks__html_blocks__09: |
+ <div id="foo"
+ *hi*
+04_06__leaf_blocks__html_blocks__10: |
+ <div class
+ foo
+04_06__leaf_blocks__html_blocks__11: |
+ <div *???-&&&-<---
+ *foo*
+04_06__leaf_blocks__html_blocks__12: |
+ <div><a href="bar">*foo*</a></div>
+04_06__leaf_blocks__html_blocks__13: |
+ <table><tr><td>
+ foo
+ </td></tr></table>
+04_06__leaf_blocks__html_blocks__14: |
+ <div></div>
+ ``` c
+ int x = 33;
+ ```
+04_06__leaf_blocks__html_blocks__15: |
+ <a href="foo">
+ *bar*
+ </a>
+04_06__leaf_blocks__html_blocks__16: |
+ <Warning>
+ *bar*
+ </Warning>
+04_06__leaf_blocks__html_blocks__17: |
+ <i class="foo">
+ *bar*
+ </i>
+04_06__leaf_blocks__html_blocks__18: |
+ </ins>
+ *bar*
+04_06__leaf_blocks__html_blocks__19: |
+ <del>
+ *foo*
+ </del>
+04_06__leaf_blocks__html_blocks__20: |
+ <del>
+
+ *foo*
+
+ </del>
+04_06__leaf_blocks__html_blocks__21: |
+ <del>*foo*</del>
+04_06__leaf_blocks__html_blocks__22: |
+ <pre language="haskell"><code>
+ import Text.HTML.TagSoup
+
+ main :: IO ()
+ main = print $ parseTags tags
+ </code></pre>
+ okay
+04_06__leaf_blocks__html_blocks__23: |
+ <script type="text/javascript">
+ // JavaScript example
+
+ document.getElementById("demo").innerHTML = "Hello JavaScript!";
+ </script>
+ okay
+04_06__leaf_blocks__html_blocks__24: |
+ <style
+ type="text/css">
+ h1 {color:red;}
+
+ p {color:blue;}
+ </style>
+ okay
+04_06__leaf_blocks__html_blocks__25: |
+ <style
+ type="text/css">
+
+ foo
+04_06__leaf_blocks__html_blocks__26: |
+ > <div>
+ > foo
+
+ bar
+04_06__leaf_blocks__html_blocks__27: |
+ - <div>
+ - foo
+04_06__leaf_blocks__html_blocks__28: |
+ <style>p{color:red;}</style>
+ *foo*
+04_06__leaf_blocks__html_blocks__29: |
+ <!-- foo -->*bar*
+ *baz*
+04_06__leaf_blocks__html_blocks__30: |
+ <script>
+ foo
+ </script>1. *bar*
+04_06__leaf_blocks__html_blocks__31: |
+ <!-- Foo
+
+ bar
+ baz -->
+ okay
+04_06__leaf_blocks__html_blocks__32: |
+ <?php
+
+ echo '>';
+
+ ?>
+ okay
+04_06__leaf_blocks__html_blocks__33: |
+ <!DOCTYPE html>
+04_06__leaf_blocks__html_blocks__34: |
+ <![CDATA[
+ function matchwo(a,b)
+ {
+ if (a < b && a < 0) then {
+ return 1;
+
+ } else {
+
+ return 0;
+ }
+ }
+ ]]>
+ okay
+04_06__leaf_blocks__html_blocks__35: |2
+ <!-- foo -->
+
+ <!-- foo -->
+04_06__leaf_blocks__html_blocks__36: |2
+ <div>
+
+ <div>
+04_06__leaf_blocks__html_blocks__37: |
+ Foo
+ <div>
+ bar
+ </div>
+04_06__leaf_blocks__html_blocks__38: |
+ <div>
+ bar
+ </div>
+ *foo*
+04_06__leaf_blocks__html_blocks__39: |
+ Foo
+ <a href="bar">
+ baz
+04_06__leaf_blocks__html_blocks__40: |
+ <div>
+
+ *Emphasized* text.
+
+ </div>
+04_06__leaf_blocks__html_blocks__41: |
+ <div>
+ *Emphasized* text.
+ </div>
+04_06__leaf_blocks__html_blocks__42: |
+ <table>
+
+ <tr>
+
+ <td>
+ Hi
+ </td>
+
+ </tr>
+
+ </table>
+04_06__leaf_blocks__html_blocks__43: |
+ <table>
+
+ <tr>
+
+ <td>
+ Hi
+ </td>
+
+ </tr>
+
+ </table>
+04_07__leaf_blocks__link_reference_definitions__01: |
+ [foo]: /url "title"
+
+ [foo]
+04_07__leaf_blocks__link_reference_definitions__02: " [foo]: \n /url \n 'the
+ title' \n\n[foo]\n"
+04_07__leaf_blocks__link_reference_definitions__03: |
+ [Foo*bar\]]:my_(url) 'title (with parens)'
+
+ [Foo*bar\]]
+04_07__leaf_blocks__link_reference_definitions__04: |
+ [Foo bar]:
+ <my url>
+ 'title'
+
+ [Foo bar]
+04_07__leaf_blocks__link_reference_definitions__05: |
+ [foo]: /url '
+ title
+ line1
+ line2
+ '
+
+ [foo]
+04_07__leaf_blocks__link_reference_definitions__06: |
+ [foo]: /url 'title
+
+ with blank line'
+
+ [foo]
+04_07__leaf_blocks__link_reference_definitions__07: |
+ [foo]:
+ /url
+
+ [foo]
+04_07__leaf_blocks__link_reference_definitions__08: |
+ [foo]:
+
+ [foo]
+04_07__leaf_blocks__link_reference_definitions__09: |
+ [foo]: <>
+
+ [foo]
+04_07__leaf_blocks__link_reference_definitions__10: |
+ [foo]: <bar>(baz)
+
+ [foo]
+04_07__leaf_blocks__link_reference_definitions__11: |
+ [foo]: /url\bar\*baz "foo\"bar\baz"
+
+ [foo]
+04_07__leaf_blocks__link_reference_definitions__12: |
+ [foo]
+
+ [foo]: url
+04_07__leaf_blocks__link_reference_definitions__13: |
+ [foo]
+
+ [foo]: first
+ [foo]: second
+04_07__leaf_blocks__link_reference_definitions__14: |
+ [FOO]: /url
+
+ [Foo]
+04_07__leaf_blocks__link_reference_definitions__15: |
+ [ΑΓΩ]: /φου
+
+ [αγω]
+04_07__leaf_blocks__link_reference_definitions__16: |
+ [foo]: /url
+04_07__leaf_blocks__link_reference_definitions__17: |
+ [
+ foo
+ ]: /url
+ bar
+04_07__leaf_blocks__link_reference_definitions__18: |
+ [foo]: /url "title" ok
+04_07__leaf_blocks__link_reference_definitions__19: |
+ [foo]: /url
+ "title" ok
+04_07__leaf_blocks__link_reference_definitions__20: |2
+ [foo]: /url "title"
+
+ [foo]
+04_07__leaf_blocks__link_reference_definitions__21: |
+ ```
+ [foo]: /url
+ ```
+
+ [foo]
+04_07__leaf_blocks__link_reference_definitions__22: |
+ Foo
+ [bar]: /baz
+
+ [bar]
+04_07__leaf_blocks__link_reference_definitions__23: |
+ # [Foo]
+ [foo]: /url
+ > bar
+04_07__leaf_blocks__link_reference_definitions__24: |
+ [foo]: /url
+ bar
+ ===
+ [foo]
+04_07__leaf_blocks__link_reference_definitions__25: |
+ [foo]: /url
+ ===
+ [foo]
+04_07__leaf_blocks__link_reference_definitions__26: |
+ [foo]: /foo-url "foo"
+ [bar]: /bar-url
+ "bar"
+ [baz]: /baz-url
+
+ [foo],
+ [bar],
+ [baz]
+04_07__leaf_blocks__link_reference_definitions__27: |
+ [foo]
+
+ > [foo]: /url
+04_07__leaf_blocks__link_reference_definitions__28: |
+ [foo]: /url
+04_08__leaf_blocks__paragraphs__01: |
+ aaa
+
+ bbb
+04_08__leaf_blocks__paragraphs__02: |
+ aaa
+ bbb
+
+ ccc
+ ddd
+04_08__leaf_blocks__paragraphs__03: |
+ aaa
+
+
+ bbb
+04_08__leaf_blocks__paragraphs__04: |2
+ aaa
+ bbb
+04_08__leaf_blocks__paragraphs__05: |
+ aaa
+ bbb
+ ccc
+04_08__leaf_blocks__paragraphs__06: |2
+ aaa
+ bbb
+04_08__leaf_blocks__paragraphs__07: |2
+ aaa
+ bbb
+04_08__leaf_blocks__paragraphs__08: "aaa \nbbb \n"
+04_09__leaf_blocks__blank_lines__01: " \n\naaa\n \n\n# aaa\n\n \n"
+04_10__leaf_blocks__tables_extension__01: |
+ | foo | bar |
+ | --- | --- |
+ | baz | bim |
+04_10__leaf_blocks__tables_extension__02: |
+ | abc | defghi |
+ :-: | -----------:
+ bar | baz
+04_10__leaf_blocks__tables_extension__03: |
+ | f\|oo |
+ | ------ |
+ | b `\|` az |
+ | b **\|** im |
+04_10__leaf_blocks__tables_extension__04: |
+ | abc | def |
+ | --- | --- |
+ | bar | baz |
+ > bar
+04_10__leaf_blocks__tables_extension__05: |
+ | abc | def |
+ | --- | --- |
+ | bar | baz |
+ bar
+
+ bar
+04_10__leaf_blocks__tables_extension__06: |
+ | abc | def |
+ | --- |
+ | bar |
+04_10__leaf_blocks__tables_extension__07: |
+ | abc | def |
+ | --- | --- |
+ | bar |
+ | bar | baz | boo |
+04_10__leaf_blocks__tables_extension__08: |
+ | abc | def |
+ | --- | --- |
+05_01__container_blocks__block_quotes__01: |
+ > # Foo
+ > bar
+ > baz
+05_01__container_blocks__block_quotes__02: |
+ ># Foo
+ >bar
+ > baz
+05_01__container_blocks__block_quotes__03: |2
+ > # Foo
+ > bar
+ > baz
+05_01__container_blocks__block_quotes__04: |2
+ > # Foo
+ > bar
+ > baz
+05_01__container_blocks__block_quotes__05: |
+ > # Foo
+ > bar
+ baz
+05_01__container_blocks__block_quotes__06: |
+ > bar
+ baz
+ > foo
+05_01__container_blocks__block_quotes__07: |
+ > foo
+ ---
+05_01__container_blocks__block_quotes__08: |
+ > - foo
+ - bar
+05_01__container_blocks__block_quotes__09: |
+ > foo
+ bar
+05_01__container_blocks__block_quotes__10: |
+ > ```
+ foo
+ ```
+05_01__container_blocks__block_quotes__11: |
+ > foo
+ - bar
+05_01__container_blocks__block_quotes__12: |
+ >
+05_01__container_blocks__block_quotes__13: ">\n> \n> \n"
+05_01__container_blocks__block_quotes__14: ">\n> foo\n> \n"
+05_01__container_blocks__block_quotes__15: |
+ > foo
+
+ > bar
+05_01__container_blocks__block_quotes__16: |
+ > foo
+ > bar
+05_01__container_blocks__block_quotes__17: |
+ > foo
+ >
+ > bar
+05_01__container_blocks__block_quotes__18: |
+ foo
+ > bar
+05_01__container_blocks__block_quotes__19: |
+ > aaa
+ ***
+ > bbb
+05_01__container_blocks__block_quotes__20: |
+ > bar
+ baz
+05_01__container_blocks__block_quotes__21: |
+ > bar
+
+ baz
+05_01__container_blocks__block_quotes__22: |
+ > bar
+ >
+ baz
+05_01__container_blocks__block_quotes__23: |
+ > > > foo
+ bar
+05_01__container_blocks__block_quotes__24: |
+ >>> foo
+ > bar
+ >>baz
+05_01__container_blocks__block_quotes__25: |
+ > code
+
+ > not code
+05_02__container_blocks__list_items__01: |
+ A paragraph
+ with two lines.
+
+ indented code
+
+ > A block quote.
+05_02__container_blocks__list_items__02: |
+ 1. A paragraph
+ with two lines.
+
+ indented code
+
+ > A block quote.
+05_02__container_blocks__list_items__03: |
+ - one
+
+ two
+05_02__container_blocks__list_items__04: |
+ - one
+
+ two
+05_02__container_blocks__list_items__05: |2
+ - one
+
+ two
+05_02__container_blocks__list_items__06: |2
+ - one
+
+ two
+05_02__container_blocks__list_items__07: |2
+ > > 1. one
+ >>
+ >> two
+05_02__container_blocks__list_items__08: |
+ >>- one
+ >>
+ > > two
+05_02__container_blocks__list_items__09: |
+ -one
+
+ 2.two
+05_02__container_blocks__list_items__10: |
+ - foo
+
+
+ bar
+05_02__container_blocks__list_items__11: |
+ 1. foo
+
+ ```
+ bar
+ ```
+
+ baz
+
+ > bam
+05_02__container_blocks__list_items__12: |
+ - Foo
+
+ bar
+
+
+ baz
+05_02__container_blocks__list_items__13: |
+ 123456789. ok
+05_02__container_blocks__list_items__14: |
+ 1234567890. not ok
+05_02__container_blocks__list_items__15: |
+ 0. ok
+05_02__container_blocks__list_items__16: |
+ 003. ok
+05_02__container_blocks__list_items__17: |
+ -1. not ok
+05_02__container_blocks__list_items__18: |
+ - foo
+
+ bar
+05_02__container_blocks__list_items__19: |2
+ 10. foo
+
+ bar
+05_02__container_blocks__list_items__20: |2
+ indented code
+
+ paragraph
+
+ more code
+05_02__container_blocks__list_items__21: |
+ 1. indented code
+
+ paragraph
+
+ more code
+05_02__container_blocks__list_items__22: |
+ 1. indented code
+
+ paragraph
+
+ more code
+05_02__container_blocks__list_items__23: |2
+ foo
+
+ bar
+05_02__container_blocks__list_items__24: |
+ - foo
+
+ bar
+05_02__container_blocks__list_items__25: |
+ - foo
+
+ bar
+05_02__container_blocks__list_items__26: |
+ -
+ foo
+ -
+ ```
+ bar
+ ```
+ -
+ baz
+05_02__container_blocks__list_items__27: "- \n foo\n"
+05_02__container_blocks__list_items__28: |
+ -
+
+ foo
+05_02__container_blocks__list_items__29: |
+ - foo
+ -
+ - bar
+05_02__container_blocks__list_items__30: "- foo\n- \n- bar\n"
+05_02__container_blocks__list_items__31: |
+ 1. foo
+ 2.
+ 3. bar
+05_02__container_blocks__list_items__32: |
+ *
+05_02__container_blocks__list_items__33: |
+ foo
+ *
+
+ foo
+ 1.
+05_02__container_blocks__list_items__34: |2
+ 1. A paragraph
+ with two lines.
+
+ indented code
+
+ > A block quote.
+05_02__container_blocks__list_items__35: |2
+ 1. A paragraph
+ with two lines.
+
+ indented code
+
+ > A block quote.
+05_02__container_blocks__list_items__36: |2
+ 1. A paragraph
+ with two lines.
+
+ indented code
+
+ > A block quote.
+05_02__container_blocks__list_items__37: |2
+ 1. A paragraph
+ with two lines.
+
+ indented code
+
+ > A block quote.
+05_02__container_blocks__list_items__38: |2
+ 1. A paragraph
+ with two lines.
+
+ indented code
+
+ > A block quote.
+05_02__container_blocks__list_items__39: |2
+ 1. A paragraph
+ with two lines.
+05_02__container_blocks__list_items__40: |
+ > 1. > Blockquote
+ continued here.
+05_02__container_blocks__list_items__41: |
+ > 1. > Blockquote
+ > continued here.
+05_02__container_blocks__list_items__42: |
+ - foo
+ - bar
+ - baz
+ - boo
+05_02__container_blocks__list_items__43: |
+ - foo
+ - bar
+ - baz
+ - boo
+05_02__container_blocks__list_items__44: |
+ 10) foo
+ - bar
+05_02__container_blocks__list_items__45: |
+ 10) foo
+ - bar
+05_02__container_blocks__list_items__46: |
+ - - foo
+05_02__container_blocks__list_items__47: |
+ 1. - 2. foo
+05_02__container_blocks__list_items__48: |
+ - # Foo
+ - Bar
+ ---
+ baz
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__49: |
+ - [ ] foo
+ - [x] bar
+ - [x] foo
+ - [ ] bar
+ - [x] baz
+ - [ ] bim
+ - foo
+ - bar
+ + baz
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__50: |
+ 1. foo
+ 2. bar
+ 3) baz
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__51: |
+ Foo
+ - bar
+ - baz
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__52: |
+ The number of windows in my house is
+ 14. The number of doors is 6.
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__53: |
+ The number of windows in my house is
+ 1. The number of doors is 6.
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__54: |
+ - foo
+
+ - bar
+
+
+ - baz
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__55: |
+ - foo
+ - bar
+ - baz
+
+
+ bim
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__56: |
+ - foo
+ - bar
+
+ <!-- -->
+
+ - baz
+ - bim
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__57: |
+ - foo
+
+ notcode
+
+ - foo
+
+ <!-- -->
+
+ code
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__58: |
+ - a
+ - b
+ - c
+ - d
+ - e
+ - f
+ - g
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__59: |
+ 1. a
+
+ 2. b
+
+ 3. c
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__60: |
+ - a
+ - b
+ - c
+ - d
+ - e
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__61: |
+ 1. a
+
+ 2. b
+
+ 3. c
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__62: |
+ - a
+ - b
+
+ - c
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__63: |
+ * a
+ *
+
+ * c
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__64: |
+ - a
+ - b
+
+ c
+ - d
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__65: |
+ - a
+ - b
+
+ [ref]: /url
+ - d
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__66: |
+ - a
+ - ```
+ b
+
+
+ ```
+ - c
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__67: |
+ - a
+ - b
+
+ c
+ - d
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__68: |
+ * a
+ > b
+ >
+ * c
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__69: |
+ - a
+ > b
+ ```
+ c
+ ```
+ - d
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__70: |
+ - a
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__71: |
+ - a
+ - b
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__72: |
+ 1. ```
+ foo
+ ```
+
+ bar
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__73: |
+ * foo
+ * bar
+
+ baz
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__74: |
+ - a
+ - b
+ - c
+
+ - d
+ - e
+ - f
+06_01__inlines__01: |
+ `hi`lo`
+06_02__inlines__backslash_escapes__01: |
+ \!\"\#\$\%\&\'\(\)\*\+\,\-\.\/\:\;\<\=\>\?\@\[\\\]\^\_\`\{\|\}\~
+06_02__inlines__backslash_escapes__02: "\\\t\\A\\a\\ \\3\\φ\\«\n"
+06_02__inlines__backslash_escapes__03: |
+ \*not emphasized*
+ \<br/> not a tag
+ \[not a link](/foo)
+ \`not code`
+ 1\. not a list
+ \* not a list
+ \# not a heading
+ \[foo]: /url "not a reference"
+ \&ouml; not a character entity
+06_02__inlines__backslash_escapes__04: |
+ \\*emphasis*
+06_02__inlines__backslash_escapes__05: |
+ foo\
+ bar
+06_02__inlines__backslash_escapes__06: |
+ `` \[\` ``
+06_02__inlines__backslash_escapes__07: |2
+ \[\]
+06_02__inlines__backslash_escapes__08: |
+ ~~~
+ \[\]
+ ~~~
+06_02__inlines__backslash_escapes__09: |
+ <http://example.com?find=\*>
+06_02__inlines__backslash_escapes__10: |
+ <a href="/bar\/)">
+06_02__inlines__backslash_escapes__11: |
+ [foo](/bar\* "ti\*tle")
+06_02__inlines__backslash_escapes__12: |
+ [foo]
+
+ [foo]: /bar\* "ti\*tle"
+06_02__inlines__backslash_escapes__13: |
+ ``` foo\+bar
+ foo
+ ```
+06_03__inlines__entity_and_numeric_character_references__01: |
+ &nbsp; &amp; &copy; &AElig; &Dcaron;
+ &frac34; &HilbertSpace; &DifferentialD;
+ &ClockwiseContourIntegral; &ngE;
+06_03__inlines__entity_and_numeric_character_references__02: |
+ &#35; &#1234; &#992; &#0;
+06_03__inlines__entity_and_numeric_character_references__03: |
+ &#X22; &#XD06; &#xcab;
+06_03__inlines__entity_and_numeric_character_references__04: |
+ &nbsp &x; &#; &#x;
+ &#987654321;
+ &#abcdef0;
+ &ThisIsNotDefined; &hi?;
+06_03__inlines__entity_and_numeric_character_references__05: |
+ &copy
+06_03__inlines__entity_and_numeric_character_references__06: |
+ &MadeUpEntity;
+06_03__inlines__entity_and_numeric_character_references__07: |
+ <a href="&ouml;&ouml;.html">
+06_03__inlines__entity_and_numeric_character_references__08: |
+ [foo](/f&ouml;&ouml; "f&ouml;&ouml;")
+06_03__inlines__entity_and_numeric_character_references__09: |
+ [foo]
+
+ [foo]: /f&ouml;&ouml; "f&ouml;&ouml;"
+06_03__inlines__entity_and_numeric_character_references__10: |
+ ``` f&ouml;&ouml;
+ foo
+ ```
+06_03__inlines__entity_and_numeric_character_references__11: |
+ `f&ouml;&ouml;`
+06_03__inlines__entity_and_numeric_character_references__12: |2
+ f&ouml;f&ouml;
+06_03__inlines__entity_and_numeric_character_references__13: |
+ &#42;foo&#42;
+ *foo*
+06_03__inlines__entity_and_numeric_character_references__14: |
+ &#42; foo
+
+ * foo
+06_03__inlines__entity_and_numeric_character_references__15: |
+ foo&#10;&#10;bar
+06_03__inlines__entity_and_numeric_character_references__16: |
+ &#9;foo
+06_03__inlines__entity_and_numeric_character_references__17: |
+ [a](url &quot;tit&quot;)
+06_04__inlines__code_spans__01: |
+ `foo`
+06_04__inlines__code_spans__02: |
+ `` foo ` bar ``
+06_04__inlines__code_spans__03: |
+ ` `` `
+06_04__inlines__code_spans__04: |
+ ` `` `
+06_04__inlines__code_spans__05: |
+ ` a`
+06_04__inlines__code_spans__06: |
+ ` b `
+06_04__inlines__code_spans__07: |
+ ` `
+ ` `
+06_04__inlines__code_spans__08: "``\nfoo\nbar \nbaz\n``\n"
+06_04__inlines__code_spans__09: "``\nfoo \n``\n"
+06_04__inlines__code_spans__10: "`foo bar \nbaz`\n"
+06_04__inlines__code_spans__11: |
+ `foo\`bar`
+06_04__inlines__code_spans__12: |
+ ``foo`bar``
+06_04__inlines__code_spans__13: |
+ ` foo `` bar `
+06_04__inlines__code_spans__14: |
+ *foo`*`
+06_04__inlines__code_spans__15: |
+ [not a `link](/foo`)
+06_04__inlines__code_spans__16: |
+ `<a href="`">`
+06_04__inlines__code_spans__17: |
+ <a href="`">`
+06_04__inlines__code_spans__18: |
+ `<http://foo.bar.`baz>`
+06_04__inlines__code_spans__19: |
+ <http://foo.bar.`baz>`
+06_04__inlines__code_spans__20: |
+ ```foo``
+06_04__inlines__code_spans__21: |
+ `foo
+06_04__inlines__code_spans__22: |
+ `foo``bar``
+06_05__inlines__emphasis_and_strong_emphasis__01: |
+ *foo bar*
+06_05__inlines__emphasis_and_strong_emphasis__02: |
+ a * foo bar*
+06_05__inlines__emphasis_and_strong_emphasis__03: |
+ a*"foo"*
+06_05__inlines__emphasis_and_strong_emphasis__04: |
+ * a *
+06_05__inlines__emphasis_and_strong_emphasis__05: |
+ foo*bar*
+06_05__inlines__emphasis_and_strong_emphasis__06: |
+ 5*6*78
+06_05__inlines__emphasis_and_strong_emphasis__07: |
+ _foo bar_
+06_05__inlines__emphasis_and_strong_emphasis__08: |
+ _ foo bar_
+06_05__inlines__emphasis_and_strong_emphasis__09: |
+ a_"foo"_
+06_05__inlines__emphasis_and_strong_emphasis__10: |
+ foo_bar_
+06_05__inlines__emphasis_and_strong_emphasis__11: |
+ 5_6_78
+06_05__inlines__emphasis_and_strong_emphasis__12: |
+ пристаням_стремятся_
+06_05__inlines__emphasis_and_strong_emphasis__13: |
+ aa_"bb"_cc
+06_05__inlines__emphasis_and_strong_emphasis__14: |
+ foo-_(bar)_
+06_05__inlines__emphasis_and_strong_emphasis__15: |
+ _foo*
+06_05__inlines__emphasis_and_strong_emphasis__16: |
+ *foo bar *
+06_05__inlines__emphasis_and_strong_emphasis__17: |
+ *foo bar
+ *
+06_05__inlines__emphasis_and_strong_emphasis__18: |
+ *(*foo)
+06_05__inlines__emphasis_and_strong_emphasis__19: |
+ *(*foo*)*
+06_05__inlines__emphasis_and_strong_emphasis__20: |
+ *foo*bar
+06_05__inlines__emphasis_and_strong_emphasis__21: |
+ _foo bar _
+06_05__inlines__emphasis_and_strong_emphasis__22: |
+ _(_foo)
+06_05__inlines__emphasis_and_strong_emphasis__23: |
+ _(_foo_)_
+06_05__inlines__emphasis_and_strong_emphasis__24: |
+ _foo_bar
+06_05__inlines__emphasis_and_strong_emphasis__25: |
+ _пристаням_стремятся
+06_05__inlines__emphasis_and_strong_emphasis__26: |
+ _foo_bar_baz_
+06_05__inlines__emphasis_and_strong_emphasis__27: |
+ _(bar)_.
+06_05__inlines__emphasis_and_strong_emphasis__28: |
+ **foo bar**
+06_05__inlines__emphasis_and_strong_emphasis__29: |
+ ** foo bar**
+06_05__inlines__emphasis_and_strong_emphasis__30: |
+ a**"foo"**
+06_05__inlines__emphasis_and_strong_emphasis__31: |
+ foo**bar**
+06_05__inlines__emphasis_and_strong_emphasis__32: |
+ __foo bar__
+06_05__inlines__emphasis_and_strong_emphasis__33: |
+ __ foo bar__
+06_05__inlines__emphasis_and_strong_emphasis__34: |
+ __
+ foo bar__
+06_05__inlines__emphasis_and_strong_emphasis__35: |
+ a__"foo"__
+06_05__inlines__emphasis_and_strong_emphasis__36: |
+ foo__bar__
+06_05__inlines__emphasis_and_strong_emphasis__37: |
+ 5__6__78
+06_05__inlines__emphasis_and_strong_emphasis__38: |
+ пристаням__стремятся__
+06_05__inlines__emphasis_and_strong_emphasis__39: |
+ __foo, __bar__, baz__
+06_05__inlines__emphasis_and_strong_emphasis__40: |
+ foo-__(bar)__
+06_05__inlines__emphasis_and_strong_emphasis__41: |
+ **foo bar **
+06_05__inlines__emphasis_and_strong_emphasis__42: |
+ **(**foo)
+06_05__inlines__emphasis_and_strong_emphasis__43: |
+ *(**foo**)*
+06_05__inlines__emphasis_and_strong_emphasis__44: |
+ **Gomphocarpus (*Gomphocarpus physocarpus*, syn.
+ *Asclepias physocarpa*)**
+06_05__inlines__emphasis_and_strong_emphasis__45: |
+ **foo "*bar*" foo**
+06_05__inlines__emphasis_and_strong_emphasis__46: |
+ **foo**bar
+06_05__inlines__emphasis_and_strong_emphasis__47: |
+ __foo bar __
+06_05__inlines__emphasis_and_strong_emphasis__48: |
+ __(__foo)
+06_05__inlines__emphasis_and_strong_emphasis__49: |
+ _(__foo__)_
+06_05__inlines__emphasis_and_strong_emphasis__50: |
+ __foo__bar
+06_05__inlines__emphasis_and_strong_emphasis__51: |
+ __пристаням__стремятся
+06_05__inlines__emphasis_and_strong_emphasis__52: |
+ __foo__bar__baz__
+06_05__inlines__emphasis_and_strong_emphasis__53: |
+ __(bar)__.
+06_05__inlines__emphasis_and_strong_emphasis__54: |
+ *foo [bar](/url)*
+06_05__inlines__emphasis_and_strong_emphasis__55: |
+ *foo
+ bar*
+06_05__inlines__emphasis_and_strong_emphasis__56: |
+ _foo __bar__ baz_
+06_05__inlines__emphasis_and_strong_emphasis__57: |
+ _foo _bar_ baz_
+06_05__inlines__emphasis_and_strong_emphasis__58: |
+ __foo_ bar_
+06_05__inlines__emphasis_and_strong_emphasis__59: |
+ *foo *bar**
+06_05__inlines__emphasis_and_strong_emphasis__60: |
+ *foo **bar** baz*
+06_05__inlines__emphasis_and_strong_emphasis__61: |
+ *foo**bar**baz*
+06_05__inlines__emphasis_and_strong_emphasis__62: |
+ *foo**bar*
+06_05__inlines__emphasis_and_strong_emphasis__63: |
+ ***foo** bar*
+06_05__inlines__emphasis_and_strong_emphasis__64: |
+ *foo **bar***
+06_05__inlines__emphasis_and_strong_emphasis__65: |
+ *foo**bar***
+06_05__inlines__emphasis_and_strong_emphasis__66: |
+ foo***bar***baz
+06_05__inlines__emphasis_and_strong_emphasis__67: |
+ foo******bar*********baz
+06_05__inlines__emphasis_and_strong_emphasis__68: |
+ *foo **bar *baz* bim** bop*
+06_05__inlines__emphasis_and_strong_emphasis__69: |
+ *foo [*bar*](/url)*
+06_05__inlines__emphasis_and_strong_emphasis__70: |
+ ** is not an empty emphasis
+06_05__inlines__emphasis_and_strong_emphasis__71: |
+ **** is not an empty strong emphasis
+06_05__inlines__emphasis_and_strong_emphasis__72: |
+ **foo [bar](/url)**
+06_05__inlines__emphasis_and_strong_emphasis__73: |
+ **foo
+ bar**
+06_05__inlines__emphasis_and_strong_emphasis__74: |
+ __foo _bar_ baz__
+06_05__inlines__emphasis_and_strong_emphasis__75: |
+ __foo __bar__ baz__
+06_05__inlines__emphasis_and_strong_emphasis__76: |
+ ____foo__ bar__
+06_05__inlines__emphasis_and_strong_emphasis__77: |
+ **foo **bar****
+06_05__inlines__emphasis_and_strong_emphasis__78: |
+ **foo *bar* baz**
+06_05__inlines__emphasis_and_strong_emphasis__79: |
+ **foo*bar*baz**
+06_05__inlines__emphasis_and_strong_emphasis__80: |
+ ***foo* bar**
+06_05__inlines__emphasis_and_strong_emphasis__81: |
+ **foo *bar***
+06_05__inlines__emphasis_and_strong_emphasis__82: |
+ **foo *bar **baz**
+ bim* bop**
+06_05__inlines__emphasis_and_strong_emphasis__83: |
+ **foo [*bar*](/url)**
+06_05__inlines__emphasis_and_strong_emphasis__84: |
+ __ is not an empty emphasis
+06_05__inlines__emphasis_and_strong_emphasis__85: |
+ ____ is not an empty strong emphasis
+06_05__inlines__emphasis_and_strong_emphasis__86: |
+ foo ***
+06_05__inlines__emphasis_and_strong_emphasis__87: |
+ foo *\**
+06_05__inlines__emphasis_and_strong_emphasis__88: |
+ foo *_*
+06_05__inlines__emphasis_and_strong_emphasis__89: |
+ foo *****
+06_05__inlines__emphasis_and_strong_emphasis__90: |
+ foo **\***
+06_05__inlines__emphasis_and_strong_emphasis__91: |
+ foo **_**
+06_05__inlines__emphasis_and_strong_emphasis__92: |
+ **foo*
+06_05__inlines__emphasis_and_strong_emphasis__93: |
+ *foo**
+06_05__inlines__emphasis_and_strong_emphasis__94: |
+ ***foo**
+06_05__inlines__emphasis_and_strong_emphasis__95: |
+ ****foo*
+06_05__inlines__emphasis_and_strong_emphasis__96: |
+ **foo***
+06_05__inlines__emphasis_and_strong_emphasis__97: |
+ *foo****
+06_05__inlines__emphasis_and_strong_emphasis__98: |
+ foo ___
+06_05__inlines__emphasis_and_strong_emphasis__99: |
+ foo _\__
+06_05__inlines__emphasis_and_strong_emphasis__100: |
+ foo _*_
+06_05__inlines__emphasis_and_strong_emphasis__101: |
+ foo _____
+06_05__inlines__emphasis_and_strong_emphasis__102: |
+ foo __\___
+06_05__inlines__emphasis_and_strong_emphasis__103: |
+ foo __*__
+06_05__inlines__emphasis_and_strong_emphasis__104: |
+ __foo_
+06_05__inlines__emphasis_and_strong_emphasis__105: |
+ _foo__
+06_05__inlines__emphasis_and_strong_emphasis__106: |
+ ___foo__
+06_05__inlines__emphasis_and_strong_emphasis__107: |
+ ____foo_
+06_05__inlines__emphasis_and_strong_emphasis__108: |
+ __foo___
+06_05__inlines__emphasis_and_strong_emphasis__109: |
+ _foo____
+06_05__inlines__emphasis_and_strong_emphasis__110: |
+ **foo**
+06_05__inlines__emphasis_and_strong_emphasis__111: |
+ *_foo_*
+06_05__inlines__emphasis_and_strong_emphasis__112: |
+ __foo__
+06_05__inlines__emphasis_and_strong_emphasis__113: |
+ _*foo*_
+06_05__inlines__emphasis_and_strong_emphasis__114: |
+ ****foo****
+06_05__inlines__emphasis_and_strong_emphasis__115: |
+ ____foo____
+06_05__inlines__emphasis_and_strong_emphasis__116: |
+ ******foo******
+06_05__inlines__emphasis_and_strong_emphasis__117: |
+ ***foo***
+06_05__inlines__emphasis_and_strong_emphasis__118: |
+ _____foo_____
+06_05__inlines__emphasis_and_strong_emphasis__119: |
+ *foo _bar* baz_
+06_05__inlines__emphasis_and_strong_emphasis__120: |
+ *foo __bar *baz bim__ bam*
+06_05__inlines__emphasis_and_strong_emphasis__121: |
+ **foo **bar baz**
+06_05__inlines__emphasis_and_strong_emphasis__122: |
+ *foo *bar baz*
+06_05__inlines__emphasis_and_strong_emphasis__123: |
+ *[bar*](/url)
+06_05__inlines__emphasis_and_strong_emphasis__124: |
+ _foo [bar_](/url)
+06_05__inlines__emphasis_and_strong_emphasis__125: |
+ *<img src="foo" title="*"/>
+06_05__inlines__emphasis_and_strong_emphasis__126: |
+ **<a href="**">
+06_05__inlines__emphasis_and_strong_emphasis__127: |
+ __<a href="__">
+06_05__inlines__emphasis_and_strong_emphasis__128: |
+ *a `*`*
+06_05__inlines__emphasis_and_strong_emphasis__129: |
+ _a `_`_
+06_05__inlines__emphasis_and_strong_emphasis__130: |
+ **a<http://foo.bar/?q=**>
+06_05__inlines__emphasis_and_strong_emphasis__131: |
+ __a<http://foo.bar/?q=__>
+06_06__inlines__strikethrough_extension__01: |
+ ~~Hi~~ Hello, world!
+06_06__inlines__strikethrough_extension__02: |
+ This ~~has a
+
+ new paragraph~~.
+06_07__inlines__links__01: |
+ [link](/uri "title")
+06_07__inlines__links__02: |
+ [link](/uri)
+06_07__inlines__links__03: |
+ [link]()
+06_07__inlines__links__04: |
+ [link](<>)
+06_07__inlines__links__05: |
+ [link](/my uri)
+06_07__inlines__links__06: |
+ [link](</my uri>)
+06_07__inlines__links__07: |
+ [link](foo
+ bar)
+06_07__inlines__links__08: |
+ [link](<foo
+ bar>)
+06_07__inlines__links__09: |
+ [a](<b)c>)
+06_07__inlines__links__10: |
+ [link](<foo\>)
+06_07__inlines__links__11: |
+ [a](<b)c
+ [a](<b)c>
+ [a](<b>c)
+06_07__inlines__links__12: |
+ [link](\(foo\))
+06_07__inlines__links__13: |
+ [link](foo(and(bar)))
+06_07__inlines__links__14: |
+ [link](foo\(and\(bar\))
+06_07__inlines__links__15: |
+ [link](<foo(and(bar)>)
+06_07__inlines__links__16: |
+ [link](foo\)\:)
+06_07__inlines__links__17: |
+ [link](#fragment)
+
+ [link](http://example.com#fragment)
+
+ [link](http://example.com?foo=3#frag)
+06_07__inlines__links__18: |
+ [link](foo\bar)
+06_07__inlines__links__19: |
+ [link](foo%20b&auml;)
+06_07__inlines__links__20: |
+ [link]("title")
+06_07__inlines__links__21: |
+ [link](/url "title")
+ [link](/url 'title')
+ [link](/url (title))
+06_07__inlines__links__22: |
+ [link](/url "title \"&quot;")
+06_07__inlines__links__23: |
+ [link](/url "title")
+06_07__inlines__links__24: |
+ [link](/url "title "and" title")
+06_07__inlines__links__25: |
+ [link](/url 'title "and" title')
+06_07__inlines__links__26: |
+ [link]( /uri
+ "title" )
+06_07__inlines__links__27: |
+ [link] (/uri)
+06_07__inlines__links__28: |
+ [link [foo [bar]]](/uri)
+06_07__inlines__links__29: |
+ [link] bar](/uri)
+06_07__inlines__links__30: |
+ [link [bar](/uri)
+06_07__inlines__links__31: |
+ [link \[bar](/uri)
+06_07__inlines__links__32: |
+ [link *foo **bar** `#`*](/uri)
+06_07__inlines__links__33: |
+ [![moon](moon.jpg)](/uri)
+06_07__inlines__links__34: |
+ [foo [bar](/uri)](/uri)
+06_07__inlines__links__35: |
+ [foo *[bar [baz](/uri)](/uri)*](/uri)
+06_07__inlines__links__36: |
+ ![[[foo](uri1)](uri2)](uri3)
+06_07__inlines__links__37: |
+ *[foo*](/uri)
+06_07__inlines__links__38: |
+ [foo *bar](baz*)
+06_07__inlines__links__39: |
+ *foo [bar* baz]
+06_07__inlines__links__40: |
+ [foo <bar attr="](baz)">
+06_07__inlines__links__41: |
+ [foo`](/uri)`
+06_07__inlines__links__42: |
+ [foo<http://example.com/?search=](uri)>
+06_07__inlines__links__43: |
+ [foo][bar]
+
+ [bar]: /url "title"
+06_07__inlines__links__44: |
+ [link [foo [bar]]][ref]
+
+ [ref]: /uri
+06_07__inlines__links__45: |
+ [link \[bar][ref]
+
+ [ref]: /uri
+06_07__inlines__links__46: |
+ [link *foo **bar** `#`*][ref]
+
+ [ref]: /uri
+06_07__inlines__links__47: |
+ [![moon](moon.jpg)][ref]
+
+ [ref]: /uri
+06_07__inlines__links__48: |
+ [foo [bar](/uri)][ref]
+
+ [ref]: /uri
+06_07__inlines__links__49: |
+ [foo *bar [baz][ref]*][ref]
+
+ [ref]: /uri
+06_07__inlines__links__50: |
+ *[foo*][ref]
+
+ [ref]: /uri
+06_07__inlines__links__51: |
+ [foo *bar][ref]
+
+ [ref]: /uri
+06_07__inlines__links__52: |
+ [foo <bar attr="][ref]">
+
+ [ref]: /uri
+06_07__inlines__links__53: |
+ [foo`][ref]`
+
+ [ref]: /uri
+06_07__inlines__links__54: |
+ [foo<http://example.com/?search=][ref]>
+
+ [ref]: /uri
+06_07__inlines__links__55: |
+ [foo][BaR]
+
+ [bar]: /url "title"
+06_07__inlines__links__56: |
+ [Толпой][Толпой] is a Russian word.
+
+ [ТОЛПОЙ]: /url
+06_07__inlines__links__57: |
+ [Foo
+ bar]: /url
+
+ [Baz][Foo bar]
+06_07__inlines__links__58: |
+ [foo] [bar]
+
+ [bar]: /url "title"
+06_07__inlines__links__59: |
+ [foo]
+ [bar]
+
+ [bar]: /url "title"
+06_07__inlines__links__60: |
+ [foo]: /url1
+
+ [foo]: /url2
+
+ [bar][foo]
+06_07__inlines__links__61: |
+ [bar][foo\!]
+
+ [foo!]: /url
+06_07__inlines__links__62: |
+ [foo][ref[]
+
+ [ref[]: /uri
+06_07__inlines__links__63: |
+ [foo][ref[bar]]
+
+ [ref[bar]]: /uri
+06_07__inlines__links__64: |
+ [[[foo]]]
+
+ [[[foo]]]: /url
+06_07__inlines__links__65: |
+ [foo][ref\[]
+
+ [ref\[]: /uri
+06_07__inlines__links__66: |
+ [bar\\]: /uri
+
+ [bar\\]
+06_07__inlines__links__67: |
+ []
+
+ []: /uri
+06_07__inlines__links__68: |
+ [
+ ]
+
+ [
+ ]: /uri
+06_07__inlines__links__69: |
+ [foo][]
+
+ [foo]: /url "title"
+06_07__inlines__links__70: |
+ [*foo* bar][]
+
+ [*foo* bar]: /url "title"
+06_07__inlines__links__71: |
+ [Foo][]
+
+ [foo]: /url "title"
+06_07__inlines__links__72: "[foo] \n[]\n\n[foo]: /url \"title\"\n"
+06_07__inlines__links__73: |
+ [foo]
+
+ [foo]: /url "title"
+06_07__inlines__links__74: |
+ [*foo* bar]
+
+ [*foo* bar]: /url "title"
+06_07__inlines__links__75: |
+ [[*foo* bar]]
+
+ [*foo* bar]: /url "title"
+06_07__inlines__links__76: |
+ [[bar [foo]
+
+ [foo]: /url
+06_07__inlines__links__77: |
+ [Foo]
+
+ [foo]: /url "title"
+06_07__inlines__links__78: |
+ [foo] bar
+
+ [foo]: /url
+06_07__inlines__links__79: |
+ \[foo]
+
+ [foo]: /url "title"
+06_07__inlines__links__80: |
+ [foo*]: /url
+
+ *[foo*]
+06_07__inlines__links__81: |
+ [foo][bar]
+
+ [foo]: /url1
+ [bar]: /url2
+06_07__inlines__links__82: |
+ [foo][]
+
+ [foo]: /url1
+06_07__inlines__links__83: |
+ [foo]()
+
+ [foo]: /url1
+06_07__inlines__links__84: |
+ [foo](not a link)
+
+ [foo]: /url1
+06_07__inlines__links__85: |
+ [foo][bar][baz]
+
+ [baz]: /url
+06_07__inlines__links__86: |
+ [foo][bar][baz]
+
+ [baz]: /url1
+ [bar]: /url2
+06_07__inlines__links__87: |
+ [foo][bar][baz]
+
+ [baz]: /url1
+ [foo]: /url2
+06_08__inlines__images__01: |
+ ![foo](/url "title")
+06_08__inlines__images__02: |
+ ![foo *bar*]
+
+ [foo *bar*]: train.jpg "train & tracks"
+06_08__inlines__images__03: |
+ ![foo ![bar](/url)](/url2)
+06_08__inlines__images__04: |
+ ![foo [bar](/url)](/url2)
+06_08__inlines__images__05: |
+ ![foo *bar*][]
+
+ [foo *bar*]: train.jpg "train & tracks"
+06_08__inlines__images__06: |
+ ![foo *bar*][foobar]
+
+ [FOOBAR]: train.jpg "train & tracks"
+06_08__inlines__images__07: |
+ ![foo](train.jpg)
+06_08__inlines__images__08: |
+ My ![foo bar](/path/to/train.jpg "title" )
+06_08__inlines__images__09: |
+ ![foo](<url>)
+06_08__inlines__images__10: |
+ ![](/url)
+06_08__inlines__images__11: |
+ ![foo][bar]
+
+ [bar]: /url
+06_08__inlines__images__12: |
+ ![foo][bar]
+
+ [BAR]: /url
+06_08__inlines__images__13: |
+ ![foo][]
+
+ [foo]: /url "title"
+06_08__inlines__images__14: |
+ ![*foo* bar][]
+
+ [*foo* bar]: /url "title"
+06_08__inlines__images__15: |
+ ![Foo][]
+
+ [foo]: /url "title"
+06_08__inlines__images__16: "![foo] \n[]\n\n[foo]: /url \"title\"\n"
+06_08__inlines__images__17: |
+ ![foo]
+
+ [foo]: /url "title"
+06_08__inlines__images__18: |
+ ![*foo* bar]
+
+ [*foo* bar]: /url "title"
+06_08__inlines__images__19: |
+ ![[foo]]
+
+ [[foo]]: /url "title"
+06_08__inlines__images__20: |
+ ![Foo]
+
+ [foo]: /url "title"
+06_08__inlines__images__21: |
+ !\[foo]
+
+ [foo]: /url "title"
+06_08__inlines__images__22: |
+ \![foo]
+
+ [foo]: /url "title"
+06_09__inlines__autolinks__01: |
+ <http://foo.bar.baz>
+06_09__inlines__autolinks__02: |
+ <http://foo.bar.baz/test?q=hello&id=22&boolean>
+06_09__inlines__autolinks__03: |
+ <irc://foo.bar:2233/baz>
+06_09__inlines__autolinks__04: |
+ <MAILTO:FOO@BAR.BAZ>
+06_09__inlines__autolinks__05: |
+ <a+b+c:d>
+06_09__inlines__autolinks__06: |
+ <made-up-scheme://foo,bar>
+06_09__inlines__autolinks__07: |
+ <http://../>
+06_09__inlines__autolinks__08: |
+ <localhost:5001/foo>
+06_09__inlines__autolinks__09: |
+ <http://foo.bar/baz bim>
+06_09__inlines__autolinks__10: |
+ <http://example.com/\[\>
+06_09__inlines__autolinks__11: |
+ <foo@bar.example.com>
+06_09__inlines__autolinks__12: |
+ <foo+special@Bar.baz-bar0.com>
+06_09__inlines__autolinks__13: |
+ <foo\+@bar.example.com>
+06_09__inlines__autolinks__14: |
+ <>
+06_09__inlines__autolinks__15: |
+ < http://foo.bar >
+06_09__inlines__autolinks__16: |
+ <m:abc>
+06_09__inlines__autolinks__17: |
+ <foo.bar.baz>
+06_09__inlines__autolinks__18: |
+ http://example.com
+06_09__inlines__autolinks__19: |
+ foo@bar.example.com
+06_10__inlines__autolinks_extension__01: |
+ www.commonmark.org
+06_10__inlines__autolinks_extension__02: |
+ Visit www.commonmark.org/help for more information.
+06_10__inlines__autolinks_extension__03: |
+ Visit www.commonmark.org.
+
+ Visit www.commonmark.org/a.b.
+06_10__inlines__autolinks_extension__04: |
+ www.google.com/search?q=Markup+(business)
+
+ www.google.com/search?q=Markup+(business)))
+
+ (www.google.com/search?q=Markup+(business))
+
+ (www.google.com/search?q=Markup+(business)
+06_10__inlines__autolinks_extension__05: |
+ www.google.com/search?q=(business))+ok
+06_10__inlines__autolinks_extension__06: |
+ www.google.com/search?q=commonmark&hl=en
+
+ www.google.com/search?q=commonmark&hl;
+06_10__inlines__autolinks_extension__07: |
+ www.commonmark.org/he<lp
+06_10__inlines__autolinks_extension__08: |
+ http://commonmark.org
+
+ (Visit https://encrypted.google.com/search?q=Markup+(business))
+
+ Anonymous FTP is available at ftp://foo.bar.baz.
+06_10__inlines__autolinks_extension__09: |
+ foo@bar.baz
+06_10__inlines__autolinks_extension__10: |
+ hello@mail+xyz.example isn't valid, but hello+xyz@mail.example is.
+06_10__inlines__autolinks_extension__11: |
+ a.b-c_d@a.b
+
+ a.b-c_d@a.b.
+
+ a.b-c_d@a.b-
+
+ a.b-c_d@a.b_
+06_11__inlines__raw_html__01: |
+ <a><bab><c2c>
+06_11__inlines__raw_html__02: |
+ <a/><b2/>
+06_11__inlines__raw_html__03: |
+ <a /><b2
+ data="foo" >
+06_11__inlines__raw_html__04: |
+ <a foo="bar" bam = 'baz <em>"</em>'
+ _boolean zoop:33=zoop:33 />
+06_11__inlines__raw_html__05: |
+ Foo <responsive-image src="foo.jpg" />
+06_11__inlines__raw_html__06: |
+ <33> <__>
+06_11__inlines__raw_html__07: |
+ <a h*#ref="hi">
+06_11__inlines__raw_html__08: |
+ <a href="hi'> <a href=hi'>
+06_11__inlines__raw_html__09: |
+ < a><
+ foo><bar/ >
+ <foo bar=baz
+ bim!bop />
+06_11__inlines__raw_html__10: |
+ <a href='bar'title=title>
+06_11__inlines__raw_html__11: |
+ </a></foo >
+06_11__inlines__raw_html__12: |
+ </a href="foo">
+06_11__inlines__raw_html__13: |
+ foo <!-- this is a
+ comment - with hyphen -->
+06_11__inlines__raw_html__14: |
+ foo <!-- not a comment -- two hyphens -->
+06_11__inlines__raw_html__15: |
+ foo <!--> foo -->
+
+ foo <!-- foo--->
+06_11__inlines__raw_html__16: |
+ foo <?php echo $a; ?>
+06_11__inlines__raw_html__17: |
+ foo <!ELEMENT br EMPTY>
+06_11__inlines__raw_html__18: |
+ foo <![CDATA[>&<]]>
+06_11__inlines__raw_html__19: |
+ foo <a href="&ouml;">
+06_11__inlines__raw_html__20: |
+ foo <a href="\*">
+06_11__inlines__raw_html__21: |
+ <a href="\"">
+06_12__inlines__disallowed_raw_html_extension__01: |
+ <strong> <title> <style> <em>
+
+ <blockquote>
+ <xmp> is disallowed. <XMP> is also disallowed.
+ </blockquote>
+06_13__inlines__hard_line_breaks__01: "foo \nbaz\n"
+06_13__inlines__hard_line_breaks__02: |
+ foo\
+ baz
+06_13__inlines__hard_line_breaks__03: "foo \nbaz\n"
+06_13__inlines__hard_line_breaks__04: "foo \n bar\n"
+06_13__inlines__hard_line_breaks__05: |
+ foo\
+ bar
+06_13__inlines__hard_line_breaks__06: "*foo \nbar*\n"
+06_13__inlines__hard_line_breaks__07: |
+ *foo\
+ bar*
+06_13__inlines__hard_line_breaks__08: "`code \nspan`\n"
+06_13__inlines__hard_line_breaks__09: |
+ `code\
+ span`
+06_13__inlines__hard_line_breaks__10: "<a href=\"foo \nbar\">\n"
+06_13__inlines__hard_line_breaks__11: |
+ <a href="foo\
+ bar">
+06_13__inlines__hard_line_breaks__12: |
+ foo\
+06_13__inlines__hard_line_breaks__13: "foo \n"
+06_13__inlines__hard_line_breaks__14: |
+ ### foo\
+06_13__inlines__hard_line_breaks__15: "### foo \n"
+06_14__inlines__soft_line_breaks__01: |
+ foo
+ baz
+06_14__inlines__soft_line_breaks__02: "foo \n baz\n"
+06_15__inlines__textual_content__01: |
+ hello $.;'there
+06_15__inlines__textual_content__02: |
+ Foo χρῆν
+06_15__inlines__textual_content__03: |
+ Multiple spaces
+07_01__first_gitlab_specific_section_with_examples__strong_but_with_two_asterisks__01: |
+ **bold**
+08_01__second_gitlab_specific_section_with_examples__strong_but_with_html__01: |
+ <strong>
+ bold
+ </strong>
diff --git a/spec/fixtures/glfm/example_snapshots/prosemirror_json.yml b/spec/fixtures/glfm/example_snapshots/prosemirror_json.yml
new file mode 100644
index 00000000000..07d0235d22a
--- /dev/null
+++ b/spec/fixtures/glfm/example_snapshots/prosemirror_json.yml
@@ -0,0 +1,16739 @@
+---
+02_01__preliminaries__tabs__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo\tbaz\t\tbim"
+ }
+ ]
+ }
+ ]
+ }
+02_01__preliminaries__tabs__02: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo\tbaz\t\tbim"
+ }
+ ]
+ }
+ ]
+ }
+02_01__preliminaries__tabs__03: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "a\ta\nὐ\ta"
+ }
+ ]
+ }
+ ]
+ }
+02_01__preliminaries__tabs__04: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+02_01__preliminaries__tabs__05: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": " bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+02_01__preliminaries__tabs__06: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": " foo"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+02_01__preliminaries__tabs__07: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph"
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": " foo"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+02_01__preliminaries__tabs__08: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo\nbar"
+ }
+ ]
+ }
+ ]
+ }
+02_01__preliminaries__tabs__09: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo\n"
+ }
+ ]
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar\n"
+ }
+ ]
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "baz"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+02_01__preliminaries__tabs__10: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ }
+ ]
+ }
+02_01__preliminaries__tabs__11: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "horizontalRule"
+ }
+ ]
+ }
+03_01__blocks_and_inlines__precedence__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "`one"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "two`"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+04_01__leaf_blocks__thematic_breaks__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "horizontalRule"
+ },
+ {
+ "type": "horizontalRule"
+ },
+ {
+ "type": "horizontalRule"
+ }
+ ]
+ }
+04_01__leaf_blocks__thematic_breaks__02: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "+++"
+ }
+ ]
+ }
+ ]
+ }
+04_01__leaf_blocks__thematic_breaks__03: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "==="
+ }
+ ]
+ }
+ ]
+ }
+04_01__leaf_blocks__thematic_breaks__04: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "--\n**\n__"
+ }
+ ]
+ }
+ ]
+ }
+04_01__leaf_blocks__thematic_breaks__05: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "horizontalRule"
+ },
+ {
+ "type": "horizontalRule"
+ },
+ {
+ "type": "horizontalRule"
+ }
+ ]
+ }
+04_01__leaf_blocks__thematic_breaks__06: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "***"
+ }
+ ]
+ }
+ ]
+ }
+04_01__leaf_blocks__thematic_breaks__07: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo\n***"
+ }
+ ]
+ }
+ ]
+ }
+04_01__leaf_blocks__thematic_breaks__08: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "horizontalRule"
+ }
+ ]
+ }
+04_01__leaf_blocks__thematic_breaks__09: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "horizontalRule"
+ }
+ ]
+ }
+04_01__leaf_blocks__thematic_breaks__10: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "horizontalRule"
+ }
+ ]
+ }
+04_01__leaf_blocks__thematic_breaks__11: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "horizontalRule"
+ }
+ ]
+ }
+04_01__leaf_blocks__thematic_breaks__12: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "horizontalRule"
+ }
+ ]
+ }
+04_01__leaf_blocks__thematic_breaks__13: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "_ _ _ _ a"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a------"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "---a---"
+ }
+ ]
+ }
+ ]
+ }
+04_01__leaf_blocks__thematic_breaks__14: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "-"
+ }
+ ]
+ }
+ ]
+ }
+04_01__leaf_blocks__thematic_breaks__15: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "horizontalRule"
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+04_01__leaf_blocks__thematic_breaks__16: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ },
+ {
+ "type": "horizontalRule"
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+04_01__leaf_blocks__thematic_breaks__17: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+04_01__leaf_blocks__thematic_breaks__18: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "horizontalRule"
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+04_01__leaf_blocks__thematic_breaks__19: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph"
+ },
+ {
+ "type": "horizontalRule"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+04_02__leaf_blocks__atx_headings__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 3
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 4
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 5
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 6
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+04_02__leaf_blocks__atx_headings__02: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "####### foo"
+ }
+ ]
+ }
+ ]
+ }
+04_02__leaf_blocks__atx_headings__03: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "#5 bolt"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "#hashtag"
+ }
+ ]
+ }
+ ]
+ }
+04_02__leaf_blocks__atx_headings__04: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "## foo"
+ }
+ ]
+ }
+ ]
+ }
+04_02__leaf_blocks__atx_headings__05: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "bar"
+ },
+ {
+ "type": "text",
+ "text": " *baz*"
+ }
+ ]
+ }
+ ]
+ }
+04_02__leaf_blocks__atx_headings__06: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+04_02__leaf_blocks__atx_headings__07: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 3
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+04_02__leaf_blocks__atx_headings__08: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "# foo"
+ }
+ ]
+ }
+ ]
+ }
+04_02__leaf_blocks__atx_headings__09: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo\n# bar"
+ }
+ ]
+ }
+ ]
+ }
+04_02__leaf_blocks__atx_headings__10: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 3
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+04_02__leaf_blocks__atx_headings__11: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 5
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+04_02__leaf_blocks__atx_headings__12: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 3
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+04_02__leaf_blocks__atx_headings__13: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 3
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo ### b"
+ }
+ ]
+ }
+ ]
+ }
+04_02__leaf_blocks__atx_headings__14: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo#"
+ }
+ ]
+ }
+ ]
+ }
+04_02__leaf_blocks__atx_headings__15: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 3
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo ###"
+ }
+ ]
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo ###"
+ }
+ ]
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo #"
+ }
+ ]
+ }
+ ]
+ }
+04_02__leaf_blocks__atx_headings__16: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "horizontalRule"
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "horizontalRule"
+ }
+ ]
+ }
+04_02__leaf_blocks__atx_headings__17: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo bar"
+ }
+ ]
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "baz"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Bar foo"
+ }
+ ]
+ }
+ ]
+ }
+04_02__leaf_blocks__atx_headings__18: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ }
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ }
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 3
+ }
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "bar"
+ }
+ ]
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__02: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "bar\nbaz"
+ }
+ ]
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__03: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "bar\nbaz"
+ }
+ ]
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__04: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__05: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__06: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo\n---\n\nFoo"
+ }
+ ]
+ },
+ {
+ "type": "horizontalRule"
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__07: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__08: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo\n---"
+ }
+ ]
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__09: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo\n= ="
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ },
+ {
+ "type": "horizontalRule"
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__10: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__11: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo\\"
+ }
+ ]
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__12: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "`Foo"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "`"
+ }
+ ]
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "<a title=\"a lot"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "of dashes\"/>"
+ }
+ ]
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__13: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "horizontalRule"
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__14: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo\nbar\n==="
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__15: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "horizontalRule"
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__16: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo\nBar"
+ }
+ ]
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__17: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "horizontalRule"
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Bar"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Baz"
+ }
+ ]
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__18: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "===="
+ }
+ ]
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__19: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "horizontalRule"
+ },
+ {
+ "type": "horizontalRule"
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__20: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "horizontalRule"
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__21: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "horizontalRule"
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__22: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "horizontalRule"
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__23: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "> foo"
+ }
+ ]
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__24: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "baz"
+ }
+ ]
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__25: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo\nbar"
+ }
+ ]
+ },
+ {
+ "type": "horizontalRule"
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "baz"
+ }
+ ]
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__26: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo\nbar"
+ }
+ ]
+ },
+ {
+ "type": "horizontalRule"
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "baz"
+ }
+ ]
+ }
+ ]
+ }
+04_03__leaf_blocks__setext_headings__27: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo\nbar\n---\nbaz"
+ }
+ ]
+ }
+ ]
+ }
+04_04__leaf_blocks__indented_code_blocks__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "a simple\n indented code block"
+ }
+ ]
+ }
+ ]
+ }
+04_04__leaf_blocks__indented_code_blocks__02: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+04_04__leaf_blocks__indented_code_blocks__03: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+04_04__leaf_blocks__indented_code_blocks__04: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "<a/>\n*hi*\n\n- one"
+ }
+ ]
+ }
+ ]
+ }
+04_04__leaf_blocks__indented_code_blocks__05: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "chunk1\n\nchunk2\n\n\n\nchunk3"
+ }
+ ]
+ }
+ ]
+ }
+04_04__leaf_blocks__indented_code_blocks__06: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "chunk1\n \n chunk2"
+ }
+ ]
+ }
+ ]
+ }
+04_04__leaf_blocks__indented_code_blocks__07: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo\nbar"
+ }
+ ]
+ }
+ ]
+ }
+04_04__leaf_blocks__indented_code_blocks__08: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+04_04__leaf_blocks__indented_code_blocks__09: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Heading"
+ }
+ ]
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Heading"
+ }
+ ]
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "horizontalRule"
+ }
+ ]
+ }
+04_04__leaf_blocks__indented_code_blocks__10: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": " foo\nbar"
+ }
+ ]
+ }
+ ]
+ }
+04_04__leaf_blocks__indented_code_blocks__11: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+04_04__leaf_blocks__indented_code_blocks__12: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo "
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "<\n >"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__02: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "<\n >"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__03: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__04: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "aaa\n~~~"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__05: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "aaa\n```"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__06: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "aaa\n```"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__07: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "aaa\n~~~"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__08: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ }
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__09: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "\n```\naaa"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__10: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "aaa"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bbb"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__11: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "\n "
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__12: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ }
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__13: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "aaa\naaa"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__14: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "aaa\naaa\naaa"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__15: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "aaa\n aaa\naaa"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__16: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "```\naaa\n```"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__17: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "aaa"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__18: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "aaa"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__19: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "aaa\n ```"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__20: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "\naaa"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__21: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "aaa\n~~~ ~~"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__22: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "baz"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__23: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "baz"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__24: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": "ruby",
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "def foo(x)\n return 3\nend"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__25: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": "ruby",
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "def foo(x)\n return 3\nend"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__26: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": ";",
+ "class": "code highlight"
+ }
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__27: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "aa"
+ },
+ {
+ "type": "text",
+ "text": "\nfoo"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__28: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": "aa",
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+04_05__leaf_blocks__fenced_code_blocks__29: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "``` aaa"
+ }
+ ]
+ }
+ ]
+ }
+04_06__leaf_blocks__html_blocks__01: |-
+ Error - check implementation:
+ Hast node of type "table" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__02: |-
+ Error - check implementation:
+ Hast node of type "table" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__03: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__04: |-
+ Error - check implementation:
+ Cannot read properties of undefined (reading 'wrapTextInParagraph')
+04_06__leaf_blocks__html_blocks__05: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__06: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__07: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__08: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__09: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph"
+ }
+ ]
+ }
+04_06__leaf_blocks__html_blocks__10: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph"
+ }
+ ]
+ }
+04_06__leaf_blocks__html_blocks__11: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph"
+ }
+ ]
+ }
+04_06__leaf_blocks__html_blocks__12: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__13: |-
+ Error - check implementation:
+ Hast node of type "table" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__14: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__15: |-
+ Error - check implementation:
+ Cannot read properties of undefined (reading 'wrapTextInParagraph')
+04_06__leaf_blocks__html_blocks__16: |-
+ Error - check implementation:
+ Hast node of type "warning" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__17: |-
+ Error - check implementation:
+ Cannot read properties of undefined (reading 'wrapTextInParagraph')
+04_06__leaf_blocks__html_blocks__18: |-
+ Error - check implementation:
+ Cannot read properties of undefined (reading 'wrapTextInParagraph')
+04_06__leaf_blocks__html_blocks__19: |-
+ Error - check implementation:
+ Hast node of type "del" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__20: |-
+ Error - check implementation:
+ Hast node of type "del" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__21: |-
+ Error - check implementation:
+ Hast node of type "del" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__22: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "\nimport Text.HTML.TagSoup\n\nmain :: IO ()\nmain = print $ parseTags tags"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "okay"
+ }
+ ]
+ }
+ ]
+ }
+04_06__leaf_blocks__html_blocks__23: |-
+ Error - check implementation:
+ Hast node of type "script" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__24: |-
+ Error - check implementation:
+ Hast node of type "style" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__25: |-
+ Error - check implementation:
+ Hast node of type "style" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__26: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__27: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__28: |-
+ Error - check implementation:
+ Hast node of type "style" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__29: |-
+ Error - check implementation:
+ Hast node of type "comment" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__30: |-
+ Error - check implementation:
+ Hast node of type "script" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__31: |-
+ Error - check implementation:
+ Hast node of type "comment" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__32: |-
+ Error - check implementation:
+ Hast node of type "comment" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__33: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph"
+ }
+ ]
+ }
+04_06__leaf_blocks__html_blocks__34: |-
+ Error - check implementation:
+ Hast node of type "comment" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__35: |-
+ Error - check implementation:
+ Hast node of type "comment" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__36: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__37: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__38: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__39: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo\n"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "bar",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "\nbaz"
+ }
+ ]
+ }
+ ]
+ }
+04_06__leaf_blocks__html_blocks__40: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__41: |-
+ Error - check implementation:
+ Hast node of type "div" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__42: |-
+ Error - check implementation:
+ Hast node of type "table" not supported by this converter. Please, provide an specification.
+04_06__leaf_blocks__html_blocks__43: |-
+ Error - check implementation:
+ Hast node of type "table" not supported by this converter. Please, provide an specification.
+04_07__leaf_blocks__link_reference_definitions__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": "title",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__02: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": "the title",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__03: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "my_(url)",
+ "target": "_blank",
+ "title": "title (with parens)",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "Foo*bar]"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__04: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "my%20url",
+ "target": "_blank",
+ "title": "title",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "Foo bar"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__05: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": "\ntitle\nline1\nline2\n",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__06: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo]: /url 'title"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "with blank line'"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo]"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__07: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__08: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo]:"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo]"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__09: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__10: |-
+ Error - check implementation:
+ Hast node of type "bar" not supported by this converter. Please, provide an specification.
+04_07__leaf_blocks__link_reference_definitions__11: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url%5Cbar*baz",
+ "target": "_blank",
+ "title": "foo\"bar\\baz",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__12: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "url",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__13: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "first",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__14: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "Foo"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__15: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/%CF%86%CE%BF%CF%85",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "αγω"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__16: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph"
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__17: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__18: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo]: /url \"title\" ok"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__19: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "\"title\" ok"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__20: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo]: /url \"title\""
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo]"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__21: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo]: /url"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo]"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__22: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo\n[bar]: /baz"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[bar]"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__23: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "Foo"
+ }
+ ]
+ },
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__24: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__25: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "===\n"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__26: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/foo-url",
+ "target": "_blank",
+ "title": "foo",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "text": ",\n"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/bar-url",
+ "target": "_blank",
+ "title": "bar",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "bar"
+ },
+ {
+ "type": "text",
+ "text": ",\n"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/baz-url",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "baz"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__27: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph"
+ }
+ ]
+ }
+ ]
+ }
+04_07__leaf_blocks__link_reference_definitions__28: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph"
+ }
+ ]
+ }
+04_08__leaf_blocks__paragraphs__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "aaa"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bbb"
+ }
+ ]
+ }
+ ]
+ }
+04_08__leaf_blocks__paragraphs__02: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "aaa\nbbb"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "ccc\nddd"
+ }
+ ]
+ }
+ ]
+ }
+04_08__leaf_blocks__paragraphs__03: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "aaa"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bbb"
+ }
+ ]
+ }
+ ]
+ }
+04_08__leaf_blocks__paragraphs__04: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "aaa\nbbb"
+ }
+ ]
+ }
+ ]
+ }
+04_08__leaf_blocks__paragraphs__05: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "aaa\nbbb\nccc"
+ }
+ ]
+ }
+ ]
+ }
+04_08__leaf_blocks__paragraphs__06: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "aaa\nbbb"
+ }
+ ]
+ }
+ ]
+ }
+04_08__leaf_blocks__paragraphs__07: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "aaa"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bbb"
+ }
+ ]
+ }
+ ]
+ }
+04_08__leaf_blocks__paragraphs__08: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "aaa"
+ },
+ {
+ "type": "hardBreak"
+ },
+ {
+ "type": "text",
+ "text": "\nbbb"
+ }
+ ]
+ }
+ ]
+ }
+04_09__leaf_blocks__blank_lines__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "aaa"
+ }
+ ]
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "aaa"
+ }
+ ]
+ }
+ ]
+ }
+04_10__leaf_blocks__tables_extension__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "| foo | bar |\n| --- | --- |\n| baz | bim |"
+ }
+ ]
+ }
+ ]
+ }
+04_10__leaf_blocks__tables_extension__02: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "| abc | defghi |\n:-: | -----------:\nbar | baz"
+ }
+ ]
+ }
+ ]
+ }
+04_10__leaf_blocks__tables_extension__03: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "| f|oo |\n| ------ |\n| b "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "\\|"
+ },
+ {
+ "type": "text",
+ "text": " az |\n| b "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "|"
+ },
+ {
+ "type": "text",
+ "text": " im |"
+ }
+ ]
+ }
+ ]
+ }
+04_10__leaf_blocks__tables_extension__04: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "| abc | def |\n| --- | --- |\n| bar | baz |"
+ }
+ ]
+ },
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+04_10__leaf_blocks__tables_extension__05: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "| abc | def |\n| --- | --- |\n| bar | baz |\nbar"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+04_10__leaf_blocks__tables_extension__06: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "| abc | def |\n| --- |\n| bar |"
+ }
+ ]
+ }
+ ]
+ }
+04_10__leaf_blocks__tables_extension__07: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "| abc | def |\n| --- | --- |\n| bar |\n| bar | baz | boo |"
+ }
+ ]
+ }
+ ]
+ }
+04_10__leaf_blocks__tables_extension__08: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "| abc | def |\n| --- | --- |"
+ }
+ ]
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar\nbaz"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__02: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar\nbaz"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__03: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar\nbaz"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__04: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "> # Foo\n> bar\n> baz"
+ }
+ ]
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__05: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar\nbaz"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__06: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar\nbaz\nfoo"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__07: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "horizontalRule"
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__08: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__09: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__10: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ }
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ }
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__11: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo\n- bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__12: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph"
+ }
+ ]
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__13: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph"
+ }
+ ]
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__14: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__15: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__16: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo\nbar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__17: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__18: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__19: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "aaa"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "horizontalRule"
+ },
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bbb"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__20: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar\nbaz"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__21: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "baz"
+ }
+ ]
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__22: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "baz"
+ }
+ ]
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__23: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo\nbar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__24: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo\nbar\nbaz"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_01__container_blocks__block_quotes__25: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "code"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "not code"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "A paragraph\nwith two lines."
+ }
+ ]
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "indented code"
+ }
+ ]
+ },
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "A block quote."
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__02: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "A paragraph\nwith two lines."
+ }
+ ]
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "indented code"
+ }
+ ]
+ },
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "A block quote."
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__03: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "one"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "two"
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__04: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "one"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "two"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__05: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "one"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": " two"
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__06: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "one"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "two"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__07: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "one"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "two"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__08: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "one"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "two"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__09: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "-one"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "2.two"
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__10: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__11: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "baz"
+ }
+ ]
+ },
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bam"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__12: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "bar\n\n\nbaz"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__13: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "ok"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__14: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "1234567890. not ok"
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__15: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "ok"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__16: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "ok"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__17: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "-1. not ok"
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__18: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__19: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__20: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "indented code"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "paragraph"
+ }
+ ]
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "more code"
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__21: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph"
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "indented code"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "paragraph"
+ }
+ ]
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "more code"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__22: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph"
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": " indented code"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "paragraph"
+ }
+ ]
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "more code"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__23: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__24: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__25: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__26: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph"
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph"
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "baz"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__27: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__28: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__29: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph"
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__30: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph"
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__31: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph"
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__32: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__33: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo\n*"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo\n1."
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__34: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "A paragraph\nwith two lines."
+ }
+ ]
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "indented code"
+ }
+ ]
+ },
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "A block quote."
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__35: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "A paragraph\nwith two lines."
+ }
+ ]
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "indented code"
+ }
+ ]
+ },
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "A block quote."
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__36: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "A paragraph\nwith two lines."
+ }
+ ]
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "indented code"
+ }
+ ]
+ },
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "A block quote."
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__37: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "1. A paragraph\n with two lines.\n\n indented code\n\n > A block quote."
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__38: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "A paragraph\nwith two lines."
+ }
+ ]
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "indented code"
+ }
+ ]
+ },
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "A block quote."
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__39: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "A paragraph\nwith two lines."
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__40: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph"
+ },
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Blockquote\ncontinued here."
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__41: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph"
+ },
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Blockquote\ncontinued here."
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__42: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo\n"
+ }
+ ]
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar\n"
+ }
+ ]
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "baz\n"
+ }
+ ]
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "boo"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__43: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "baz"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "boo"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__44: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo\n"
+ }
+ ]
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__45: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__46: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph"
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__47: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph"
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph"
+ },
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__48: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph"
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 1
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph"
+ },
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 2
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "Bar\nbaz"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__49: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[ ] foo"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[x] bar"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[x] foo\n"
+ }
+ ]
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[ ] bar"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[x] baz"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[ ] bim"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "baz"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__50: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "baz"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__51: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo"
+ }
+ ]
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "baz"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__52: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "The number of windows in my house is\n14. The number of doors is 6."
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__53: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "The number of windows in my house is"
+ }
+ ]
+ },
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "The number of doors is 6."
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__54: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "baz"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__55: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo\n"
+ }
+ ]
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar\n"
+ }
+ ]
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "baz"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bim"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__56: |-
+ Error - check implementation:
+ Hast node of type "comment" not supported by this converter. Please, provide an specification.
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__57: |-
+ Error - check implementation:
+ Hast node of type "comment" not supported by this converter. Please, provide an specification.
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__58: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "b"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "c"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "d"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "e"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "f"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "g"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__59: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "b"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "c"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__60: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "b"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "c"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "d\n- e"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__61: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "b"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "3. c"
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__62: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "b"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "c"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__63: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph"
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "c"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__64: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "b"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "c"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "d"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__65: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "b"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "d"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__66: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph"
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "b\n\n"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "c"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__67: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a\n"
+ }
+ ]
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "b"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "c"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "d"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__68: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a\n"
+ }
+ ]
+ },
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "b"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "c"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__69: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a\n"
+ }
+ ]
+ },
+ {
+ "type": "blockquote",
+ "attrs": {
+ "multiline": false
+ },
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "b"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "c"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "d"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__70: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__71: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a\n"
+ }
+ ]
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "b"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__72: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "orderedList",
+ "attrs": {
+ "start": 1,
+ "parens": false
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph"
+ },
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__73: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "baz"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__74: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a"
+ }
+ ]
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "b"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "c"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "d"
+ }
+ ]
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "e"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "f"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+06_01__inlines__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "hi"
+ },
+ {
+ "type": "text",
+ "text": "lo`"
+ }
+ ]
+ }
+ ]
+ }
+06_02__inlines__backslash_escapes__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~"
+ }
+ ]
+ }
+ ]
+ }
+06_02__inlines__backslash_escapes__02: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "\\\t\\A\\a\\ \\3\\φ\\«"
+ }
+ ]
+ }
+ ]
+ }
+06_02__inlines__backslash_escapes__03: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "*not emphasized*\n<br/> not a tag\n[not a link](/foo)\n`not code`\n1. not a list\n* not a list\n# not a heading\n[foo]: /url \"not a reference\"\n&ouml; not a character entity"
+ }
+ ]
+ }
+ ]
+ }
+06_02__inlines__backslash_escapes__04: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "\\"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "emphasis"
+ }
+ ]
+ }
+ ]
+ }
+06_02__inlines__backslash_escapes__05: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ },
+ {
+ "type": "hardBreak"
+ },
+ {
+ "type": "text",
+ "text": "\nbar"
+ }
+ ]
+ }
+ ]
+ }
+06_02__inlines__backslash_escapes__06: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "\\[\\`"
+ }
+ ]
+ }
+ ]
+ }
+06_02__inlines__backslash_escapes__07: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "\\[\\]"
+ }
+ ]
+ }
+ ]
+ }
+06_02__inlines__backslash_escapes__08: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "\\[\\]"
+ }
+ ]
+ }
+ ]
+ }
+06_02__inlines__backslash_escapes__09: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "http://example.com?find=%5C*",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "http://example.com?find=\\*"
+ }
+ ]
+ }
+ ]
+ }
+06_02__inlines__backslash_escapes__10: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph"
+ }
+ ]
+ }
+06_02__inlines__backslash_escapes__11: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/bar*",
+ "target": "_blank",
+ "title": "ti*tle",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_02__inlines__backslash_escapes__12: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/bar*",
+ "target": "_blank",
+ "title": "ti*tle",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_02__inlines__backslash_escapes__13: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": "foo+bar",
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_03__inlines__entity_and_numeric_character_references__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "  & © Æ Ď\n¾ ℋ ⅆ\n∲ ≧̸"
+ }
+ ]
+ }
+ ]
+ }
+06_03__inlines__entity_and_numeric_character_references__02: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "# Ӓ Ϡ �"
+ }
+ ]
+ }
+ ]
+ }
+06_03__inlines__entity_and_numeric_character_references__03: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "\" ആ ಫ"
+ }
+ ]
+ }
+ ]
+ }
+06_03__inlines__entity_and_numeric_character_references__04: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "&nbsp &x; &#; &#x;\n&#987654321;\n&#abcdef0;\n&ThisIsNotDefined; &hi?;"
+ }
+ ]
+ }
+ ]
+ }
+06_03__inlines__entity_and_numeric_character_references__05: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "&copy"
+ }
+ ]
+ }
+ ]
+ }
+06_03__inlines__entity_and_numeric_character_references__06: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "&MadeUpEntity;"
+ }
+ ]
+ }
+ ]
+ }
+06_03__inlines__entity_and_numeric_character_references__07: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph"
+ }
+ ]
+ }
+06_03__inlines__entity_and_numeric_character_references__08: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/f%C3%B6%C3%B6",
+ "target": "_blank",
+ "title": "föö",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_03__inlines__entity_and_numeric_character_references__09: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/f%C3%B6%C3%B6",
+ "target": "_blank",
+ "title": "föö",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_03__inlines__entity_and_numeric_character_references__10: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": "föö",
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_03__inlines__entity_and_numeric_character_references__11: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "f&ouml;&ouml;"
+ }
+ ]
+ }
+ ]
+ }
+06_03__inlines__entity_and_numeric_character_references__12: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "codeBlock",
+ "attrs": {
+ "language": null,
+ "class": "code highlight"
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "f&ouml;f&ouml;"
+ }
+ ]
+ }
+ ]
+ }
+06_03__inlines__entity_and_numeric_character_references__13: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "*foo*\n"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_03__inlines__entity_and_numeric_character_references__14: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "* foo"
+ }
+ ]
+ },
+ {
+ "type": "bulletList",
+ "attrs": {
+ "bullet": "*"
+ },
+ "content": [
+ {
+ "type": "listItem",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+06_03__inlines__entity_and_numeric_character_references__15: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo\n\nbar"
+ }
+ ]
+ }
+ ]
+ }
+06_03__inlines__entity_and_numeric_character_references__16: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "\tfoo"
+ }
+ ]
+ }
+ ]
+ }
+06_03__inlines__entity_and_numeric_character_references__17: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[a](url \"tit\")"
+ }
+ ]
+ }
+ ]
+ }
+06_04__inlines__code_spans__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_04__inlines__code_spans__02: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "foo ` bar"
+ }
+ ]
+ }
+ ]
+ }
+06_04__inlines__code_spans__03: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "``"
+ }
+ ]
+ }
+ ]
+ }
+06_04__inlines__code_spans__04: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": " `` "
+ }
+ ]
+ }
+ ]
+ }
+06_04__inlines__code_spans__05: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": " a"
+ }
+ ]
+ }
+ ]
+ }
+06_04__inlines__code_spans__06: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": " b "
+ }
+ ]
+ }
+ ]
+ }
+06_04__inlines__code_spans__07: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph"
+ }
+ ]
+ }
+06_04__inlines__code_spans__08: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "foo bar baz"
+ }
+ ]
+ }
+ ]
+ }
+06_04__inlines__code_spans__09: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "foo "
+ }
+ ]
+ }
+ ]
+ }
+06_04__inlines__code_spans__10: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "foo bar baz"
+ }
+ ]
+ }
+ ]
+ }
+06_04__inlines__code_spans__11: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "foo\\"
+ },
+ {
+ "type": "text",
+ "text": "bar`"
+ }
+ ]
+ }
+ ]
+ }
+06_04__inlines__code_spans__12: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "foo`bar"
+ }
+ ]
+ }
+ ]
+ }
+06_04__inlines__code_spans__13: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "foo `` bar"
+ }
+ ]
+ }
+ ]
+ }
+06_04__inlines__code_spans__14: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "*foo"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "*"
+ }
+ ]
+ }
+ ]
+ }
+06_04__inlines__code_spans__15: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[not a "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "link](/foo"
+ },
+ {
+ "type": "text",
+ "text": ")"
+ }
+ ]
+ }
+ ]
+ }
+06_04__inlines__code_spans__16: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "<a href=\""
+ },
+ {
+ "type": "text",
+ "text": "\">`"
+ }
+ ]
+ }
+ ]
+ }
+06_04__inlines__code_spans__17: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "`",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "`"
+ }
+ ]
+ }
+ ]
+ }
+06_04__inlines__code_spans__18: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "<http://foo.bar."
+ },
+ {
+ "type": "text",
+ "text": "baz>`"
+ }
+ ]
+ }
+ ]
+ }
+06_04__inlines__code_spans__19: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "http://foo.bar.%60baz",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "http://foo.bar.`baz"
+ },
+ {
+ "type": "text",
+ "text": "`"
+ }
+ ]
+ }
+ ]
+ }
+06_04__inlines__code_spans__20: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "```foo``"
+ }
+ ]
+ }
+ ]
+ }
+06_04__inlines__code_spans__21: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "`foo"
+ }
+ ]
+ }
+ ]
+ }
+06_04__inlines__code_spans__22: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "`foo"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__02: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a * foo bar*"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__03: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a*\"foo\"*"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__04: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "* a *"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__05: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__06: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "5"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "6"
+ },
+ {
+ "type": "text",
+ "text": "78"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__07: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__08: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "_ foo bar_"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__09: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a_\"foo\"_"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__10: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo_bar_"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__11: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "5_6_78"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__12: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "пристаням_стремятся_"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__13: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "aa_\"bb\"_cc"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__14: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo-"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "(bar)"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__15: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "_foo*"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__16: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "*foo bar *"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__17: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "*foo bar\n*"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__18: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "*(*foo)"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__19: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "(foo"
+ },
+ {
+ "type": "text",
+ "text": ")"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__20: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__21: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "_foo bar _"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__22: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "_(_foo)"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__23: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "(foo"
+ },
+ {
+ "type": "text",
+ "text": ")"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__24: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "_foo_bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__25: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "_пристаням_стремятся"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__26: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo_bar_baz"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__27: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "(bar)"
+ },
+ {
+ "type": "text",
+ "text": "."
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__28: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__29: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "** foo bar**"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__30: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a**\"foo\"**"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__31: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__32: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__33: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "__ foo bar__"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__34: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "__\nfoo bar__"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__35: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a__\"foo\"__"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__36: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo__bar__"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__37: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "5__6__78"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__38: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "пристаням__стремятся__"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__39: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo, bar"
+ },
+ {
+ "type": "text",
+ "text": ", baz"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__40: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo-"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "(bar)"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__41: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "**foo bar **"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__42: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "**(**foo)"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__43: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "("
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "text": ")"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__44: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "Gomphocarpus ("
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "Gomphocarpus physocarpus"
+ },
+ {
+ "type": "text",
+ "text": ", syn.\n"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "Asclepias physocarpa"
+ },
+ {
+ "type": "text",
+ "text": ")"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__45: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo \""
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "bar"
+ },
+ {
+ "type": "text",
+ "text": "\" foo"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__46: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__47: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "__foo bar __"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__48: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "__(__foo)"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__49: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "("
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "text": ")"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__50: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "__foo__bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__51: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "__пристаням__стремятся"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__52: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo__bar__baz"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__53: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "(bar)"
+ },
+ {
+ "type": "text",
+ "text": "."
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__54: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__55: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo\nbar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__56: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "bar"
+ },
+ {
+ "type": "text",
+ "text": " baz"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__57: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo bar"
+ },
+ {
+ "type": "text",
+ "text": " baz"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__58: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "text": " bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__59: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__60: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "bar"
+ },
+ {
+ "type": "text",
+ "text": " baz"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__61: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "bar"
+ },
+ {
+ "type": "text",
+ "text": "baz"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__62: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo**bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__63: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ },
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "text": " bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__64: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__65: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__66: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ },
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "bar"
+ },
+ {
+ "type": "text",
+ "text": "baz"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__67: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "bar"
+ },
+ {
+ "type": "text",
+ "text": "***baz"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__68: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "bar "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "baz"
+ },
+ {
+ "type": "text",
+ "text": " bim bop"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__69: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ },
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__70: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "** is not an empty emphasis"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__71: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "**** is not an empty strong emphasis"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__72: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__73: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo\nbar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__74: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "bar"
+ },
+ {
+ "type": "text",
+ "text": " baz"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__75: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo bar"
+ },
+ {
+ "type": "text",
+ "text": " baz"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__76: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "text": " bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__77: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__78: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "bar"
+ },
+ {
+ "type": "text",
+ "text": " baz"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__79: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "bar"
+ },
+ {
+ "type": "text",
+ "text": "baz"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__80: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ },
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "text": " bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__81: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__82: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "bar "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "baz"
+ },
+ {
+ "type": "text",
+ "text": "\nbim bop"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__83: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ },
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__84: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "__ is not an empty emphasis"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__85: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "____ is not an empty strong emphasis"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__86: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo ***"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__87: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "*"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__88: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "_"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__89: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo *****"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__90: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "*"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__91: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "_"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__92: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "*"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__93: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "text": "*"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__94: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "*"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__95: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "***"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__96: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "text": "*"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__97: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "text": "***"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__98: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo ___"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__99: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "_"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__100: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "*"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__101: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo _____"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__102: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "_"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__103: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "*"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__104: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "_"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__105: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "text": "_"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__106: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "_"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__107: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "___"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__108: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "text": "_"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__109: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "text": "___"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__110: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__111: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__112: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__113: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__114: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__115: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__116: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__117: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ },
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__118: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ },
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__119: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo _bar"
+ },
+ {
+ "type": "text",
+ "text": " baz_"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__120: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "bar *baz bim"
+ },
+ {
+ "type": "text",
+ "text": " bam"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__121: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "**foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "bar baz"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__122: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "*foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "bar baz"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__123: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "*"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "bar*"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__124: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "_foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "bar_"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__125: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "*"
+ },
+ {
+ "type": "image",
+ "attrs": {
+ "src": "foo",
+ "alt": null,
+ "title": "*",
+ "uploading": false,
+ "canonicalSrc": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__126: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "**"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__127: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "__"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__128: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "a "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "*"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__129: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "a "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "_"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__130: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "**a"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "http://foo.bar/?q=**",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "http://foo.bar/?q=**"
+ }
+ ]
+ }
+ ]
+ }
+06_05__inlines__emphasis_and_strong_emphasis__131: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "__a"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "http://foo.bar/?q=__",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "http://foo.bar/?q=__"
+ }
+ ]
+ }
+ ]
+ }
+06_06__inlines__strikethrough_extension__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "~~Hi~~ Hello, world!"
+ }
+ ]
+ }
+ ]
+ }
+06_06__inlines__strikethrough_extension__02: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "This ~~has a"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "new paragraph~~."
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/uri",
+ "target": "_blank",
+ "title": "title",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__02: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/uri",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__03: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__04: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__05: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[link](/my uri)"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__06: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/my%20uri",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__07: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[link](foo\nbar)"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__08: |-
+ Error - check implementation:
+ Hast node of type "foo" not supported by this converter. Please, provide an specification.
+06_07__inlines__links__09: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "b)c",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "a"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__10: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[link](<foo>)"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__11: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[a](<b)c\n[a](<b)c>\n[a]("
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "c)"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__12: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "(foo)",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__13: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "foo(and(bar))",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__14: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "foo(and(bar)",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__15: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "foo(and(bar)",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__16: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "foo):",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__17: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "#fragment",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "http://example.com#fragment",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "http://example.com?foo=3#frag",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__18: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "foo%5Cbar",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__19: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "foo%20b%C3%A4",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__20: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "%22title%22",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__21: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": "title",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "linklinklink"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__22: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": "title \"\"",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__23: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url%C2%A0%22title%22",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__24: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[link](/url \"title \"and\" title\")"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__25: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": "title \"and\" title",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__26: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/uri",
+ "target": "_blank",
+ "title": "title",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__27: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[link] (/uri)"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__28: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/uri",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link [foo [bar]]"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__29: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[link] bar](/uri)"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__30: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[link "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/uri",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__31: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/uri",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link [bar"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__32: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/uri",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "bar"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "#"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__33: |-
+ Error - check implementation:
+ Cannot destructure property 'type' of 'this.stack.pop(...)' as it is undefined.
+06_07__inlines__links__34: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/uri",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "bar"
+ },
+ {
+ "type": "text",
+ "text": "](/uri)"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__35: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "[bar "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/uri",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "baz"
+ },
+ {
+ "type": "text",
+ "text": "](/uri)](/uri)"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__36: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "image",
+ "attrs": {
+ "src": "uri3",
+ "alt": "[foo](uri2)",
+ "title": null,
+ "uploading": false,
+ "canonicalSrc": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__37: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "*"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/uri",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo*"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__38: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "baz*",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo *bar"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__39: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo [bar"
+ },
+ {
+ "type": "text",
+ "text": " baz]"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__40: |-
+ Error - check implementation:
+ Hast node of type "bar" not supported by this converter. Please, provide an specification.
+06_07__inlines__links__41: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "](/uri)"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__42: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "http://example.com/?search=%5D(uri)",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "http://example.com/?search=](uri)"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__43: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": "title",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__44: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/uri",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link [foo [bar]]"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__45: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/uri",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link [bar"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__46: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/uri",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "link "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "bar"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "#"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__47: |-
+ Error - check implementation:
+ Cannot destructure property 'type' of 'this.stack.pop(...)' as it is undefined.
+06_07__inlines__links__48: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/uri",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "bar"
+ },
+ {
+ "type": "text",
+ "text": "]"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/uri",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "ref"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__49: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "bar "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/uri",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "baz"
+ },
+ {
+ "type": "text",
+ "text": "]"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/uri",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "ref"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__50: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "*"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/uri",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo*"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__51: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/uri",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo *bar"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__52: |-
+ Error - check implementation:
+ Hast node of type "bar" not supported by this converter. Please, provide an specification.
+06_07__inlines__links__53: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "][ref]"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__54: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "http://example.com/?search=%5D%5Bref%5D",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "http://example.com/?search=][ref]"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__55: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": "title",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__56: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "Толпой"
+ },
+ {
+ "type": "text",
+ "text": " is a Russian word."
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__57: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "Baz"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__58: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo] "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": "title",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__59: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo]\n"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": "title",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__60: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url1",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__61: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[bar][foo!]"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__62: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo][ref[]"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[ref[]: /uri"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__63: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo][ref[bar]]"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[ref[bar]]: /uri"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__64: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[[[foo]]]"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[[[foo]]]: /url"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__65: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/uri",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__66: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/uri",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "bar\\"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__67: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[]"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[]: /uri"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__68: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[\n]"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[\n]: /uri"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__69: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": "title",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__70: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": "title",
+ "canonicalSrc": null
+ }
+ },
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "text": " bar"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__71: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": "title",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "Foo"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__72: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": "title",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "text": "\n[]"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__73: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": "title",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__74: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": "title",
+ "canonicalSrc": null
+ }
+ },
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "text": " bar"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__75: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "["
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": "title",
+ "canonicalSrc": null
+ }
+ },
+ {
+ "type": "italic"
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "text": " bar]"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__76: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[[bar "
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__77: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": "title",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "Foo"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__78: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "text": " bar"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__79: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo]"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__80: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "*"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo*"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__81: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url2",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__82: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url1",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__83: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__84: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url1",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "text": "(not a link)"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__85: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo]"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__86: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url2",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url1",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "baz"
+ }
+ ]
+ }
+ ]
+ }
+06_07__inlines__links__87: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[foo]"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url1",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "bar"
+ }
+ ]
+ }
+ ]
+ }
+06_08__inlines__images__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "image",
+ "attrs": {
+ "src": "/url",
+ "alt": "foo",
+ "title": "title",
+ "uploading": false,
+ "canonicalSrc": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+06_08__inlines__images__02: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "image",
+ "attrs": {
+ "src": "train.jpg",
+ "alt": "foo bar",
+ "title": "train & tracks",
+ "uploading": false,
+ "canonicalSrc": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+06_08__inlines__images__03: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "image",
+ "attrs": {
+ "src": "/url2",
+ "alt": "foo bar",
+ "title": null,
+ "uploading": false,
+ "canonicalSrc": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+06_08__inlines__images__04: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "image",
+ "attrs": {
+ "src": "/url2",
+ "alt": "foo bar",
+ "title": null,
+ "uploading": false,
+ "canonicalSrc": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+06_08__inlines__images__05: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "image",
+ "attrs": {
+ "src": "train.jpg",
+ "alt": "foo bar",
+ "title": "train & tracks",
+ "uploading": false,
+ "canonicalSrc": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+06_08__inlines__images__06: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "image",
+ "attrs": {
+ "src": "train.jpg",
+ "alt": "foo bar",
+ "title": "train & tracks",
+ "uploading": false,
+ "canonicalSrc": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+06_08__inlines__images__07: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "image",
+ "attrs": {
+ "src": "train.jpg",
+ "alt": "foo",
+ "title": null,
+ "uploading": false,
+ "canonicalSrc": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+06_08__inlines__images__08: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "My "
+ },
+ {
+ "type": "image",
+ "attrs": {
+ "src": "/path/to/train.jpg",
+ "alt": "foo bar",
+ "title": "title",
+ "uploading": false,
+ "canonicalSrc": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+06_08__inlines__images__09: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "image",
+ "attrs": {
+ "src": "url",
+ "alt": "foo",
+ "title": null,
+ "uploading": false,
+ "canonicalSrc": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+06_08__inlines__images__10: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "image",
+ "attrs": {
+ "src": "/url",
+ "alt": "",
+ "title": null,
+ "uploading": false,
+ "canonicalSrc": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+06_08__inlines__images__11: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "image",
+ "attrs": {
+ "src": "/url",
+ "alt": "foo",
+ "title": null,
+ "uploading": false,
+ "canonicalSrc": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+06_08__inlines__images__12: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "image",
+ "attrs": {
+ "src": "/url",
+ "alt": "foo",
+ "title": null,
+ "uploading": false,
+ "canonicalSrc": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+06_08__inlines__images__13: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "image",
+ "attrs": {
+ "src": "/url",
+ "alt": "foo",
+ "title": "title",
+ "uploading": false,
+ "canonicalSrc": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+06_08__inlines__images__14: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "image",
+ "attrs": {
+ "src": "/url",
+ "alt": "foo bar",
+ "title": "title",
+ "uploading": false,
+ "canonicalSrc": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+06_08__inlines__images__15: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "image",
+ "attrs": {
+ "src": "/url",
+ "alt": "Foo",
+ "title": "title",
+ "uploading": false,
+ "canonicalSrc": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+06_08__inlines__images__16: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "image",
+ "attrs": {
+ "src": "/url",
+ "alt": "foo",
+ "title": "title",
+ "uploading": false,
+ "canonicalSrc": null
+ }
+ },
+ {
+ "type": "text",
+ "text": "\n[]"
+ }
+ ]
+ }
+ ]
+ }
+06_08__inlines__images__17: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "image",
+ "attrs": {
+ "src": "/url",
+ "alt": "foo",
+ "title": "title",
+ "uploading": false,
+ "canonicalSrc": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+06_08__inlines__images__18: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "image",
+ "attrs": {
+ "src": "/url",
+ "alt": "foo bar",
+ "title": "title",
+ "uploading": false,
+ "canonicalSrc": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+06_08__inlines__images__19: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "![[foo]]"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "[[foo]]: /url \"title\""
+ }
+ ]
+ }
+ ]
+ }
+06_08__inlines__images__20: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "image",
+ "attrs": {
+ "src": "/url",
+ "alt": "Foo",
+ "title": "title",
+ "uploading": false,
+ "canonicalSrc": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+06_08__inlines__images__21: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "![foo]"
+ }
+ ]
+ }
+ ]
+ }
+06_08__inlines__images__22: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "!"
+ },
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "/url",
+ "target": "_blank",
+ "title": "title",
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_09__inlines__autolinks__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "http://foo.bar.baz",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "http://foo.bar.baz"
+ }
+ ]
+ }
+ ]
+ }
+06_09__inlines__autolinks__02: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "http://foo.bar.baz/test?q=hello&id=22&boolean",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "http://foo.bar.baz/test?q=hello&id=22&boolean"
+ }
+ ]
+ }
+ ]
+ }
+06_09__inlines__autolinks__03: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "irc://foo.bar:2233/baz",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "irc://foo.bar:2233/baz"
+ }
+ ]
+ }
+ ]
+ }
+06_09__inlines__autolinks__04: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "MAILTO:FOO@BAR.BAZ",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "MAILTO:FOO@BAR.BAZ"
+ }
+ ]
+ }
+ ]
+ }
+06_09__inlines__autolinks__05: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "a+b+c:d",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "a+b+c:d"
+ }
+ ]
+ }
+ ]
+ }
+06_09__inlines__autolinks__06: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "made-up-scheme://foo,bar",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "made-up-scheme://foo,bar"
+ }
+ ]
+ }
+ ]
+ }
+06_09__inlines__autolinks__07: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "http://../",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "http://../"
+ }
+ ]
+ }
+ ]
+ }
+06_09__inlines__autolinks__08: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "localhost:5001/foo",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "localhost:5001/foo"
+ }
+ ]
+ }
+ ]
+ }
+06_09__inlines__autolinks__09: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "<http://foo.bar/baz bim>"
+ }
+ ]
+ }
+ ]
+ }
+06_09__inlines__autolinks__10: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "http://example.com/%5C%5B%5C",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "http://example.com/\\[\\"
+ }
+ ]
+ }
+ ]
+ }
+06_09__inlines__autolinks__11: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "mailto:foo@bar.example.com",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo@bar.example.com"
+ }
+ ]
+ }
+ ]
+ }
+06_09__inlines__autolinks__12: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "link",
+ "attrs": {
+ "href": "mailto:foo+special@Bar.baz-bar0.com",
+ "target": "_blank",
+ "title": null,
+ "canonicalSrc": null
+ }
+ }
+ ],
+ "text": "foo+special@Bar.baz-bar0.com"
+ }
+ ]
+ }
+ ]
+ }
+06_09__inlines__autolinks__13: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "<foo+@bar.example.com>"
+ }
+ ]
+ }
+ ]
+ }
+06_09__inlines__autolinks__14: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "<>"
+ }
+ ]
+ }
+ ]
+ }
+06_09__inlines__autolinks__15: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "< http://foo.bar >"
+ }
+ ]
+ }
+ ]
+ }
+06_09__inlines__autolinks__16: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "<m:abc>"
+ }
+ ]
+ }
+ ]
+ }
+06_09__inlines__autolinks__17: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "<foo.bar.baz>"
+ }
+ ]
+ }
+ ]
+ }
+06_09__inlines__autolinks__18: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "http://example.com"
+ }
+ ]
+ }
+ ]
+ }
+06_09__inlines__autolinks__19: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo@bar.example.com"
+ }
+ ]
+ }
+ ]
+ }
+06_10__inlines__autolinks_extension__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "www.commonmark.org"
+ }
+ ]
+ }
+ ]
+ }
+06_10__inlines__autolinks_extension__02: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Visit www.commonmark.org/help for more information."
+ }
+ ]
+ }
+ ]
+ }
+06_10__inlines__autolinks_extension__03: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Visit www.commonmark.org."
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Visit www.commonmark.org/a.b."
+ }
+ ]
+ }
+ ]
+ }
+06_10__inlines__autolinks_extension__04: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "www.google.com/search?q=Markup+(business)"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "www.google.com/search?q=Markup+(business)))"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "(www.google.com/search?q=Markup+(business))"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "(www.google.com/search?q=Markup+(business)"
+ }
+ ]
+ }
+ ]
+ }
+06_10__inlines__autolinks_extension__05: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "www.google.com/search?q=(business))+ok"
+ }
+ ]
+ }
+ ]
+ }
+06_10__inlines__autolinks_extension__06: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "www.google.com/search?q=commonmark&hl=en"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "www.google.com/search?q=commonmark&hl;"
+ }
+ ]
+ }
+ ]
+ }
+06_10__inlines__autolinks_extension__07: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "www.commonmark.org/he<lp"
+ }
+ ]
+ }
+ ]
+ }
+06_10__inlines__autolinks_extension__08: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "http://commonmark.org"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "(Visit https://encrypted.google.com/search?q=Markup+(business))"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Anonymous FTP is available at ftp://foo.bar.baz."
+ }
+ ]
+ }
+ ]
+ }
+06_10__inlines__autolinks_extension__09: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo@bar.baz"
+ }
+ ]
+ }
+ ]
+ }
+06_10__inlines__autolinks_extension__10: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "hello@mail+xyz.example isn't valid, but hello+xyz@mail.example is."
+ }
+ ]
+ }
+ ]
+ }
+06_10__inlines__autolinks_extension__11: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a.b-c_d@a.b"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a.b-c_d@a.b."
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a.b-c_d@a.b-"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "a.b-c_d@a.b_"
+ }
+ ]
+ }
+ ]
+ }
+06_11__inlines__raw_html__01: |-
+ Error - check implementation:
+ Hast node of type "bab" not supported by this converter. Please, provide an specification.
+06_11__inlines__raw_html__02: |-
+ Error - check implementation:
+ Hast node of type "b2" not supported by this converter. Please, provide an specification.
+06_11__inlines__raw_html__03: |-
+ Error - check implementation:
+ Hast node of type "b2" not supported by this converter. Please, provide an specification.
+06_11__inlines__raw_html__04: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph"
+ }
+ ]
+ }
+06_11__inlines__raw_html__05: |-
+ Error - check implementation:
+ Hast node of type "responsive-image" not supported by this converter. Please, provide an specification.
+06_11__inlines__raw_html__06: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "<33> <__>"
+ }
+ ]
+ }
+ ]
+ }
+06_11__inlines__raw_html__07: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "<a h*#ref=\"hi\">"
+ }
+ ]
+ }
+ ]
+ }
+06_11__inlines__raw_html__08: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "<a href=\"hi'> <a href=hi'>"
+ }
+ ]
+ }
+ ]
+ }
+06_11__inlines__raw_html__09: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "< a><\nfoo><bar/ >\n<foo bar=baz\nbim!bop />"
+ }
+ ]
+ }
+ ]
+ }
+06_11__inlines__raw_html__10: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "<a href='bar'title=title>"
+ }
+ ]
+ }
+ ]
+ }
+06_11__inlines__raw_html__11: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph"
+ }
+ ]
+ }
+06_11__inlines__raw_html__12: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "</a href=\"foo\">"
+ }
+ ]
+ }
+ ]
+ }
+06_11__inlines__raw_html__13: |-
+ Error - check implementation:
+ Hast node of type "comment" not supported by this converter. Please, provide an specification.
+06_11__inlines__raw_html__14: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo <!-- not a comment -- two hyphens -->"
+ }
+ ]
+ }
+ ]
+ }
+06_11__inlines__raw_html__15: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo <!--> foo -->"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo <!-- foo--->"
+ }
+ ]
+ }
+ ]
+ }
+06_11__inlines__raw_html__16: |-
+ Error - check implementation:
+ Hast node of type "comment" not supported by this converter. Please, provide an specification.
+06_11__inlines__raw_html__17: |-
+ Error - check implementation:
+ Hast node of type "comment" not supported by this converter. Please, provide an specification.
+06_11__inlines__raw_html__18: |-
+ Error - check implementation:
+ Hast node of type "comment" not supported by this converter. Please, provide an specification.
+06_11__inlines__raw_html__19: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo "
+ }
+ ]
+ }
+ ]
+ }
+06_11__inlines__raw_html__20: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo "
+ }
+ ]
+ }
+ ]
+ }
+06_11__inlines__raw_html__21: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "<a href=\"\"\">"
+ }
+ ]
+ }
+ ]
+ }
+06_12__inlines__disallowed_raw_html_extension__01: |-
+ Error - check implementation:
+ Hast node of type "title" not supported by this converter. Please, provide an specification.
+06_13__inlines__hard_line_breaks__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ },
+ {
+ "type": "hardBreak"
+ },
+ {
+ "type": "text",
+ "text": "\nbaz"
+ }
+ ]
+ }
+ ]
+ }
+06_13__inlines__hard_line_breaks__02: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ },
+ {
+ "type": "hardBreak"
+ },
+ {
+ "type": "text",
+ "text": "\nbaz"
+ }
+ ]
+ }
+ ]
+ }
+06_13__inlines__hard_line_breaks__03: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ },
+ {
+ "type": "hardBreak"
+ },
+ {
+ "type": "text",
+ "text": "\nbaz"
+ }
+ ]
+ }
+ ]
+ }
+06_13__inlines__hard_line_breaks__04: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ },
+ {
+ "type": "hardBreak"
+ },
+ {
+ "type": "text",
+ "text": "\nbar"
+ }
+ ]
+ }
+ ]
+ }
+06_13__inlines__hard_line_breaks__05: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ },
+ {
+ "type": "hardBreak"
+ },
+ {
+ "type": "text",
+ "text": "\nbar"
+ }
+ ]
+ }
+ ]
+ }
+06_13__inlines__hard_line_breaks__06: |-
+ Error - check implementation:
+ Cannot destructure property 'type' of 'this.stack.pop(...)' as it is undefined.
+06_13__inlines__hard_line_breaks__07: |-
+ Error - check implementation:
+ Cannot destructure property 'type' of 'this.stack.pop(...)' as it is undefined.
+06_13__inlines__hard_line_breaks__08: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "code span"
+ }
+ ]
+ }
+ ]
+ }
+06_13__inlines__hard_line_breaks__09: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "code"
+ }
+ ],
+ "text": "code\\ span"
+ }
+ ]
+ }
+ ]
+ }
+06_13__inlines__hard_line_breaks__10: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph"
+ }
+ ]
+ }
+06_13__inlines__hard_line_breaks__11: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph"
+ }
+ ]
+ }
+06_13__inlines__hard_line_breaks__12: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo\\"
+ }
+ ]
+ }
+ ]
+ }
+06_13__inlines__hard_line_breaks__13: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_13__inlines__hard_line_breaks__14: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 3
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo\\"
+ }
+ ]
+ }
+ ]
+ }
+06_13__inlines__hard_line_breaks__15: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "heading",
+ "attrs": {
+ "level": 3
+ },
+ "content": [
+ {
+ "type": "text",
+ "text": "foo"
+ }
+ ]
+ }
+ ]
+ }
+06_14__inlines__soft_line_breaks__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo\nbaz"
+ }
+ ]
+ }
+ ]
+ }
+06_14__inlines__soft_line_breaks__02: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "foo\nbaz"
+ }
+ ]
+ }
+ ]
+ }
+06_15__inlines__textual_content__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "hello $.;'there"
+ }
+ ]
+ }
+ ]
+ }
+06_15__inlines__textual_content__02: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Foo χρῆν"
+ }
+ ]
+ }
+ ]
+ }
+06_15__inlines__textual_content__03: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "text": "Multiple spaces"
+ }
+ ]
+ }
+ ]
+ }
+07_01__first_gitlab_specific_section_with_examples__strong_but_with_two_asterisks__01: |-
+ {
+ "type": "doc",
+ "content": [
+ {
+ "type": "paragraph",
+ "content": [
+ {
+ "type": "text",
+ "marks": [
+ {
+ "type": "bold"
+ }
+ ],
+ "text": "bold"
+ }
+ ]
+ }
+ ]
+ }
+08_01__second_gitlab_specific_section_with_examples__strong_but_with_html__01: |-
+ Error - check implementation:
+ Cannot read properties of undefined (reading 'wrapTextInParagraph')
diff --git a/spec/fixtures/lib/gitlab/import_export/complex/project.json b/spec/fixtures/lib/gitlab/import_export/complex/project.json
index ce0df4250d6..e721525f00c 100644
--- a/spec/fixtures/lib/gitlab/import_export/complex/project.json
+++ b/spec/fixtures/lib/gitlab/import_export/complex/project.json
@@ -2379,6 +2379,23 @@
"created_at": "2019-12-26T10:17:14.621Z",
"updated_at": "2019-12-26T10:17:14.621Z"
}
+ ],
+ "milestone_releases": [
+ {
+ "milestone_id": 1349,
+ "release_id": 9172,
+ "milestone": {
+ "id": 1,
+ "title": "test milestone",
+ "project_id": 8,
+ "description": "test milestone",
+ "due_date": null,
+ "created_at": "2016-06-14T15:02:04.415Z",
+ "updated_at": "2016-06-14T15:02:04.415Z",
+ "state": "active",
+ "iid": 1
+ }
+ }
]
}
],
diff --git a/spec/fixtures/lib/gitlab/import_export/complex/tree/project/releases.ndjson b/spec/fixtures/lib/gitlab/import_export/complex/tree/project/releases.ndjson
index 0c14c023378..a194898cb5a 100644
--- a/spec/fixtures/lib/gitlab/import_export/complex/tree/project/releases.ndjson
+++ b/spec/fixtures/lib/gitlab/import_export/complex/tree/project/releases.ndjson
@@ -1 +1 @@
-{"id":1,"tag":"release-1.1","description":"Some release notes","project_id":5,"created_at":"2019-12-26T10:17:14.621Z","updated_at":"2019-12-26T10:17:14.621Z","author_id":1,"name":"release-1.1","sha":"901de3a8bd5573f4a049b1457d28bc1592ba6bf9","released_at":"2019-12-26T10:17:14.615Z","links":[{"id":1,"release_id":1,"url":"http://localhost/namespace6/project6/-/jobs/140463678/artifacts/download","name":"release-1.1.dmg","created_at":"2019-12-26T10:17:14.621Z","updated_at":"2019-12-26T10:17:14.621Z"}]}
+{"id":1,"tag":"release-1.1","description":"Some release notes","project_id":5,"created_at":"2019-12-26T10:17:14.621Z","updated_at":"2019-12-26T10:17:14.621Z","author_id":1,"name":"release-1.1","sha":"901de3a8bd5573f4a049b1457d28bc1592ba6bf9","released_at":"2019-12-26T10:17:14.615Z","links":[{"id":1,"release_id":1,"url":"http://localhost/namespace6/project6/-/jobs/140463678/artifacts/download","name":"release-1.1.dmg","created_at":"2019-12-26T10:17:14.621Z","updated_at":"2019-12-26T10:17:14.621Z"}],"milestone_releases":[{"milestone_id":1349,"release_id":9172,"milestone":{"id":1,"title":"test milestone","project_id":8,"description":"test milestone","due_date":null,"created_at":"2016-06-14T15:02:04.415Z","updated_at":"2016-06-14T15:02:04.415Z","state":"active","iid":1}}]}
diff --git a/spec/fixtures/lib/gitlab/import_export/designs/project.json b/spec/fixtures/lib/gitlab/import_export/designs/project.json
index 16dd805c132..6720139adeb 100644
--- a/spec/fixtures/lib/gitlab/import_export/designs/project.json
+++ b/spec/fixtures/lib/gitlab/import_export/designs/project.json
@@ -9,7 +9,6 @@
"merge_requests_ff_only_enabled":false,
"issues_template":null,
"shared_runners_enabled":true,
- "build_coverage_regex":null,
"build_allow_git_fetch":true,
"build_timeout":3600,
"pending_delete":false,
diff --git a/spec/fixtures/lib/gitlab/import_export/multi_pipeline_ref_one_external_pr/project.json b/spec/fixtures/lib/gitlab/import_export/multi_pipeline_ref_one_external_pr/project.json
index 5ca803cc11f..d25371e10dd 100644
--- a/spec/fixtures/lib/gitlab/import_export/multi_pipeline_ref_one_external_pr/project.json
+++ b/spec/fixtures/lib/gitlab/import_export/multi_pipeline_ref_one_external_pr/project.json
@@ -5,7 +5,6 @@
"autoclose_referenced_issues": true,
"boards": [],
"build_allow_git_fetch": true,
- "build_coverage_regex": null,
"build_timeout": 3600,
"ci_cd_settings": {
"group_runners_enabled": true
diff --git a/spec/fixtures/lib/gitlab/import_export/multi_pipeline_ref_one_external_pr/tree/project.json b/spec/fixtures/lib/gitlab/import_export/multi_pipeline_ref_one_external_pr/tree/project.json
index 5f7cf8128bc..4e08ae31f36 100644
--- a/spec/fixtures/lib/gitlab/import_export/multi_pipeline_ref_one_external_pr/tree/project.json
+++ b/spec/fixtures/lib/gitlab/import_export/multi_pipeline_ref_one_external_pr/tree/project.json
@@ -1 +1 @@
-{"id":5,"approvals_before_merge":0,"archived":false,"auto_cancel_pending_pipelines":"enabled","autoclose_referenced_issues":true,"build_allow_git_fetch":true,"build_coverage_regex":null,"build_timeout":3600,"ci_config_path":null,"delete_error":null,"description":"Vim, Tmux and others","disable_overriding_approvers_per_merge_request":null,"external_authorization_classification_label":"","external_webhook_token":"D3mVYFzZkgZ5kMfcW_wx","public_builds":true,"shared_runners_enabled":true,"visibility_level":20}
+{"id":5,"approvals_before_merge":0,"archived":false,"auto_cancel_pending_pipelines":"enabled","autoclose_referenced_issues":true,"build_allow_git_fetch":true,"build_timeout":3600,"ci_config_path":null,"delete_error":null,"description":"Vim, Tmux and others","disable_overriding_approvers_per_merge_request":null,"external_authorization_classification_label":"","external_webhook_token":"D3mVYFzZkgZ5kMfcW_wx","public_builds":true,"shared_runners_enabled":true,"visibility_level":20}
diff --git a/spec/fixtures/logo_sample.svg b/spec/fixtures/logo_sample.svg
index 883e7e6cf92..2feb64a9aa2 100644
--- a/spec/fixtures/logo_sample.svg
+++ b/spec/fixtures/logo_sample.svg
@@ -1,27 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<svg width="210px" height="210px" viewBox="0 0 210 210" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
- <!-- Generator: Sketch 3.3.2 (12043) - http://www.bohemiancoding.com/sketch -->
- <title>Slice 1</title>
- <desc>Created with Sketch.</desc>
- <script>alert('FAIL')</script>
- <defs></defs>
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
- <g id="logo" sketch:type="MSLayerGroup" transform="translate(0.000000, 10.000000)">
- <g id="Page-1" sketch:type="MSShapeGroup">
- <g id="Fill-1-+-Group-24">
- <g id="Group-24">
- <g id="Group">
- <path d="M105.0614,193.655 L105.0614,193.655 L143.7014,74.734 L66.4214,74.734 L105.0614,193.655 L105.0614,193.655 Z" id="Fill-4" fill="#E24329" class="tanuki-shape"></path>
- <path d="M105.0614,193.6548 L66.4214,74.7338 L12.2684,74.7338 L105.0614,193.6548 L105.0614,193.6548 Z" id="Fill-8" fill="#FC6D26" class="tanuki-shape"></path>
- <path d="M12.2685,74.7341 L12.2685,74.7341 L0.5265,110.8731 C-0.5445,114.1691 0.6285,117.7801 3.4325,119.8171 L105.0615,193.6551 L12.2685,74.7341 L12.2685,74.7341 Z" id="Fill-12" fill="#FCA326" class="tanuki-shape"></path>
- <path d="M12.2685,74.7342 L66.4215,74.7342 L43.1485,3.1092 C41.9515,-0.5768 36.7375,-0.5758 35.5405,3.1092 L12.2685,74.7342 L12.2685,74.7342 Z" id="Fill-16" fill="#E24329" class="tanuki-shape"></path>
- <path d="M105.0614,193.6548 L143.7014,74.7338 L197.8544,74.7338 L105.0614,193.6548 L105.0614,193.6548 Z" id="Fill-18" fill="#FC6D26" class="tanuki-shape"></path>
- <path d="M197.8544,74.7341 L197.8544,74.7341 L209.5964,110.8731 C210.6674,114.1691 209.4944,117.7801 206.6904,119.8171 L105.0614,193.6551 L197.8544,74.7341 L197.8544,74.7341 Z" id="Fill-20" fill="#FCA326" class="tanuki-shape"></path>
- <path d="M197.8544,74.7342 L143.7014,74.7342 L166.9744,3.1092 C168.1714,-0.5768 173.3854,-0.5758 174.5824,3.1092 L197.8544,74.7342 L197.8544,74.7342 Z" id="Fill-22" fill="#E24329" class="tanuki-shape"></path>
- </g>
- </g>
- </g>
- </g>
- </g>
- </g>
+<svg width="50" height="48" viewBox="0 0 50 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+ <!-- Generator: Sketch 3.3.2 (12043) - http://www.bohemiancoding.com/sketch -->
+ <title>Slice 1</title>
+ <desc>Created with Sketch.</desc>
+ <script>alert('FAIL')</script>
+ <defs></defs>
+ <path d="m49.014 19-.067-.18-6.784-17.696a1.792 1.792 0 0 0-3.389.182l-4.579 14.02H15.651l-4.58-14.02a1.795 1.795 0 0 0-3.388-.182l-6.78 17.7-.071.175A12.595 12.595 0 0 0 5.01 33.556l.026.02.057.044 10.32 7.734 5.12 3.87 3.11 2.351a2.102 2.102 0 0 0 2.535 0l3.11-2.352 5.12-3.869 10.394-7.779.029-.022a12.595 12.595 0 0 0 4.182-14.554Z"
+ fill="#E24329"/>
+ <path d="m49.014 19-.067-.18a22.88 22.88 0 0 0-9.12 4.103L24.931 34.187l9.485 7.167 10.393-7.779.03-.022a12.595 12.595 0 0 0 4.175-14.554Z"
+ fill="#FC6D26"/>
+ <path d="m15.414 41.354 5.12 3.87 3.11 2.351a2.102 2.102 0 0 0 2.535 0l3.11-2.352 5.12-3.869-9.484-7.167-9.51 7.167Z"
+ fill="#FCA326"/>
+ <path d="M10.019 22.923a22.86 22.86 0 0 0-9.117-4.1L.832 19A12.595 12.595 0 0 0 5.01 33.556l.026.02.057.044 10.32 7.734 9.491-7.167L10.02 22.923Z"
+ fill="#FC6D26"/>
</svg>
+
diff --git a/spec/fixtures/markdown/markdown_golden_master_examples.yml b/spec/fixtures/markdown/markdown_golden_master_examples.yml
index bdd7c13c1a3..5847e9f2cdf 100644
--- a/spec/fixtures/markdown/markdown_golden_master_examples.yml
+++ b/spec/fixtures/markdown/markdown_golden_master_examples.yml
@@ -140,7 +140,7 @@
markdown: |-
![test-file](/uploads/aa45a38ec2cfe97433281b10bbff042c/test-file.png)
html: |-
- <p data-sourcepos="1:1-1:69" dir="auto"><a class="no-attachment-icon gfm" href="/groups/group58/-/uploads/aa45a38ec2cfe97433281b10bbff042c/test-file.png" target="_blank" rel="noopener noreferrer" data-canonical-src="/uploads/aa45a38ec2cfe97433281b10bbff042c/test-file.png" data-link="true"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="test-file" class="lazy gfm" data-src="/groups/group58/-/uploads/aa45a38ec2cfe97433281b10bbff042c/test-file.png" data-canonical-src="/uploads/aa45a38ec2cfe97433281b10bbff042c/test-file.png"></a></p>
+ <p data-sourcepos="1:1-1:69" dir="auto"><a class="no-attachment-icon gfm" href="/groups/group58/-/uploads/aa45a38ec2cfe97433281b10bbff042c/test-file.png" target="_blank" rel="noopener noreferrer" data-canonical-src="/uploads/aa45a38ec2cfe97433281b10bbff042c/test-file.png" data-link="true"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="test-file" decoding="async" class="lazy gfm" data-src="/groups/group58/-/uploads/aa45a38ec2cfe97433281b10bbff042c/test-file.png" data-canonical-src="/uploads/aa45a38ec2cfe97433281b10bbff042c/test-file.png"></a></p>
- name: attachment_image_for_project
api_context: project
@@ -149,7 +149,7 @@
markdown: |-
![test-file](/uploads/aa45a38ec2cfe97433281b10bbff042c/test-file.png)
html: |-
- <p data-sourcepos="1:1-1:69" dir="auto"><a class="no-attachment-icon gfm" href="/group58/project22/uploads/aa45a38ec2cfe97433281b10bbff042c/test-file.png" target="_blank" rel="noopener noreferrer" data-canonical-src="/uploads/aa45a38ec2cfe97433281b10bbff042c/test-file.png" data-link="true"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="test-file" class="lazy gfm" data-src="/group58/project22/uploads/aa45a38ec2cfe97433281b10bbff042c/test-file.png" data-canonical-src="/uploads/aa45a38ec2cfe97433281b10bbff042c/test-file.png"></a></p>
+ <p data-sourcepos="1:1-1:69" dir="auto"><a class="no-attachment-icon gfm" href="/group58/project22/uploads/aa45a38ec2cfe97433281b10bbff042c/test-file.png" target="_blank" rel="noopener noreferrer" data-canonical-src="/uploads/aa45a38ec2cfe97433281b10bbff042c/test-file.png" data-link="true"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="test-file" decoding="async" class="lazy gfm" data-src="/group58/project22/uploads/aa45a38ec2cfe97433281b10bbff042c/test-file.png" data-canonical-src="/uploads/aa45a38ec2cfe97433281b10bbff042c/test-file.png"></a></p>
- name: attachment_image_for_project_wiki
api_context: project_wiki
@@ -158,7 +158,7 @@
markdown: |-
![test-file](test-file.png)
html: |-
- <p data-sourcepos="1:1-1:27" dir="auto"><a class="no-attachment-icon" href="/group1/project1/-/wikis/test-file.png" target="_blank" rel="noopener noreferrer" data-canonical-src="test-file.png"><img alt="test-file" class="lazy" data-src="/group1/project1/-/wikis/test-file.png" data-canonical-src="test-file.png"></a></p>
+ <p data-sourcepos="1:1-1:27" dir="auto"><a class="no-attachment-icon" href="/group1/project1/-/wikis/test-file.png" target="_blank" rel="noopener noreferrer" data-canonical-src="test-file.png"><img alt="test-file" decoding="async" class="lazy" data-src="/group1/project1/-/wikis/test-file.png" data-canonical-src="test-file.png"></a></p>
- name: attachment_link_for_group
api_context: group
@@ -391,7 +391,7 @@
]
```
html: |-
- <a class="no-attachment-icon" href="http://localhost:8000/nomnoml/svg/eNp1jbsOwjAMRfd-haUuIJQBBlRFVZb2L1CGkBqpgtpR6oEhH0_CW6hsts-9xwD1LJHPqKF2zX67ayqAQ3uKbkLTo-fohCMEJ4KRUoYFu2MuOS-m4ykwIUlKG-CAOT0yrdb2EewuY2YWBgxIwwxKmXx8dZ6h95ekgPAqGv4miuk-YnEVFfmIgr-Fzw6tVt-CZb7osdUNUAReJA==" target="_blank" rel="noopener noreferrer" data-diagram="nomnoml" data-diagram-src="data:text/plain;base64,ICAjc3Ryb2tlOiAjYTg2MTI4CiAgWzxmcmFtZT5EZWNvcmF0b3IgcGF0dGVybnwKICAgIFs8YWJzdHJhY3Q+Q29tcG9uZW50fHwrIG9wZXJhdGlvbigpXQogICAgW0NsaWVudF0gZGVwZW5kcyAtLT4gW0NvbXBvbmVudF0KICAgIFtEZWNvcmF0b3J8LSBuZXh0OiBDb21wb25lbnRdCiAgICBbRGVjb3JhdG9yXSBkZWNvcmF0ZXMgLS0gW0NvbmNyZXRlQ29tcG9uZW50XQogICAgW0NvbXBvbmVudF0gPDotIFtEZWNvcmF0b3JdCiAgICBbQ29tcG9uZW50XSA8Oi0gW0NvbmNyZXRlQ29tcG9uZW50XQogIF0K"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" class="js-render-kroki lazy" data-src="http://localhost:8000/nomnoml/svg/eNp1jbsOwjAMRfd-haUuIJQBBlRFVZb2L1CGkBqpgtpR6oEhH0_CW6hsts-9xwD1LJHPqKF2zX67ayqAQ3uKbkLTo-fohCMEJ4KRUoYFu2MuOS-m4ykwIUlKG-CAOT0yrdb2EewuY2YWBgxIwwxKmXx8dZ6h95ekgPAqGv4miuk-YnEVFfmIgr-Fzw6tVt-CZb7osdUNUAReJA=="></a>
+ <a class="no-attachment-icon" href="http://localhost:8000/nomnoml/svg/eNp1jbsOwjAMRfd-haUuIJQBBlRFVZb2L1CGkBqpgtpR6oEhH0_CW6hsts-9xwD1LJHPqKF2zX67ayqAQ3uKbkLTo-fohCMEJ4KRUoYFu2MuOS-m4ykwIUlKG-CAOT0yrdb2EewuY2YWBgxIwwxKmXx8dZ6h95ekgPAqGv4miuk-YnEVFfmIgr-Fzw6tVt-CZb7osdUNUAReJA==" target="_blank" rel="noopener noreferrer" data-diagram="nomnoml" data-diagram-src="data:text/plain;base64,ICAjc3Ryb2tlOiAjYTg2MTI4CiAgWzxmcmFtZT5EZWNvcmF0b3IgcGF0dGVybnwKICAgIFs8YWJzdHJhY3Q+Q29tcG9uZW50fHwrIG9wZXJhdGlvbigpXQogICAgW0NsaWVudF0gZGVwZW5kcyAtLT4gW0NvbXBvbmVudF0KICAgIFtEZWNvcmF0b3J8LSBuZXh0OiBDb21wb25lbnRdCiAgICBbRGVjb3JhdG9yXSBkZWNvcmF0ZXMgLS0gW0NvbmNyZXRlQ29tcG9uZW50XQogICAgW0NvbXBvbmVudF0gPDotIFtEZWNvcmF0b3JdCiAgICBbQ29tcG9uZW50XSA8Oi0gW0NvbmNyZXRlQ29tcG9uZW50XQogIF0K"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" class="js-render-kroki lazy" decoding="async" data-src="http://localhost:8000/nomnoml/svg/eNp1jbsOwjAMRfd-haUuIJQBBlRFVZb2L1CGkBqpgtpR6oEhH0_CW6hsts-9xwD1LJHPqKF2zX67ayqAQ3uKbkLTo-fohCMEJ4KRUoYFu2MuOS-m4ykwIUlKG-CAOT0yrdb2EewuY2YWBgxIwwxKmXx8dZ6h95ekgPAqGv4miuk-YnEVFfmIgr-Fzw6tVt-CZb7osdUNUAReJA=="></a>
- name: diagram_plantuml
markdown: |-
@@ -403,7 +403,7 @@
Alice <-- Bob: Another authentication Response
```
html: |-
- <a class="no-attachment-icon" href="http://localhost:8080/png/U9nJK73CoKnELT2rKt3AJx9IS2mjoKZDAybCJYp9pCzJ24ejB4qjBk5I0Cagw09LWPLZKLTSa9zNdCe5L8bcO5u-K6MHGY8kWo7ARNHr2QY7MW00AeWxTG00" target="_blank" rel="noopener noreferrer" data-diagram="plantuml" data-diagram-src="data:text/plain;base64,ICBBbGljZSAtPiBCb2I6IEF1dGhlbnRpY2F0aW9uIFJlcXVlc3QKICBCb2IgLS0+IEFsaWNlOiBBdXRoZW50aWNhdGlvbiBSZXNwb25zZQoKICBBbGljZSAtPiBCb2I6IEFub3RoZXIgYXV0aGVudGljYXRpb24gUmVxdWVzdAogIEFsaWNlIDwtLSBCb2I6IEFub3RoZXIgYXV0aGVudGljYXRpb24gUmVzcG9uc2UK"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" class="lazy" data-src="http://localhost:8080/png/U9nJK73CoKnELT2rKt3AJx9IS2mjoKZDAybCJYp9pCzJ24ejB4qjBk5I0Cagw09LWPLZKLTSa9zNdCe5L8bcO5u-K6MHGY8kWo7ARNHr2QY7MW00AeWxTG00"></a>
+ <a class="no-attachment-icon" href="http://localhost:8080/png/U9nJK73CoKnELT2rKt3AJx9IS2mjoKZDAybCJYp9pCzJ24ejB4qjBk5I0Cagw09LWPLZKLTSa9zNdCe5L8bcO5u-K6MHGY8kWo7ARNHr2QY7MW00AeWxTG00" target="_blank" rel="noopener noreferrer" data-diagram="plantuml" data-diagram-src="data:text/plain;base64,ICBBbGljZSAtPiBCb2I6IEF1dGhlbnRpY2F0aW9uIFJlcXVlc3QKICBCb2IgLS0+IEFsaWNlOiBBdXRoZW50aWNhdGlvbiBSZXNwb25zZQoKICBBbGljZSAtPiBCb2I6IEFub3RoZXIgYXV0aGVudGljYXRpb24gUmVxdWVzdAogIEFsaWNlIDwtLSBCb2I6IEFub3RoZXIgYXV0aGVudGljYXRpb24gUmVzcG9uc2UK"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" decoding="async" class="lazy" data-src="http://localhost:8080/png/U9nJK73CoKnELT2rKt3AJx9IS2mjoKZDAybCJYp9pCzJ24ejB4qjBk5I0Cagw09LWPLZKLTSa9zNdCe5L8bcO5u-K6MHGY8kWo7ARNHr2QY7MW00AeWxTG00"></a>
- name: div
markdown: |-
@@ -449,11 +449,11 @@
</figure>
html: |-
<figure>
- <p data-sourcepos="3:1-3:42"><a class="no-attachment-icon" href="elephant-sunset.jpg" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Elephant at sunset" class="lazy" data-src="elephant-sunset.jpg"></a></p>
+ <p data-sourcepos="3:1-3:42"><a class="no-attachment-icon" href="elephant-sunset.jpg" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Elephant at sunset" decoding="async" class="lazy" data-src="elephant-sunset.jpg"></a></p>
<figcaption>An elephant at sunset</figcaption>
</figure>
<figure>
- <p data-sourcepos="9:1-9:44"><a class="no-attachment-icon" href="croc-crocs.jpg" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="A crocodile wearing crocs" class="lazy" data-src="croc-crocs.jpg"></a></p>
+ <p data-sourcepos="9:1-9:44"><a class="no-attachment-icon" href="croc-crocs.jpg" target="_blank" rel="noopener noreferrer"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="A crocodile wearing crocs" decoding="async" class="lazy" data-src="croc-crocs.jpg"></a></p>
<figcaption>
<p data-sourcepos="13:1-13:28">A crocodile wearing <em>crocs</em>!</p>
</figcaption>
@@ -613,7 +613,7 @@
markdown: |-
![alt text](https://gitlab.com/logo.png)
html: |-
- <p data-sourcepos="1:1-1:40" dir="auto"><a class="no-attachment-icon" href="https://gitlab.com/logo.png" target="_blank" rel="nofollow noreferrer noopener"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="alt text" class="lazy" data-src="https://gitlab.com/logo.png"></a></p>
+ <p data-sourcepos="1:1-1:40" dir="auto"><a class="no-attachment-icon" href="https://gitlab.com/logo.png" target="_blank" rel="nofollow noreferrer noopener"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="alt text" decoding="async" class="lazy" data-src="https://gitlab.com/logo.png"></a></p>
- name: inline_code
markdown: |-
@@ -750,7 +750,7 @@
markdown: |-
Hi @gfm_user - thank you for reporting this bug (#1) we hope to fix it in %1.1 as part of !1
html: |-
- <p data-sourcepos="1:1-1:92" dir="auto">Hi <a href="/gfm_user" data-user="1" data-reference-type="user" data-container="body" data-placement="top" class="gfm gfm-project_member js-user-link" title="John Doe1">@gfm_user</a> - thank you for reporting this bug (<a href="/group1/project1/-/issues/1" data-original="#1" data-link="false" data-link-reference="false" data-project="11" data-issue="11" data-reference-type="issue" data-container="body" data-placement="top" title="My title 1" class="gfm gfm-issue has-tooltip">#1</a>) we hope to fix it in <a href="/group1/project1/-/milestones/1" data-original="%1.1" data-link="false" data-link-reference="false" data-project="11" data-milestone="11" data-reference-type="milestone" data-container="body" data-placement="top" title="" class="gfm gfm-milestone has-tooltip">%1.1</a> as part of <a href="/group1/project1/-/merge_requests/1" data-original="!1" data-link="false" data-link-reference="false" data-project="11" data-merge-request="11" data-project-path="group1/project1" data-iid="1" data-mr-title="My title 2" data-reference-type="merge_request" data-container="body" data-placement="top" title="" class="gfm gfm-merge_request">!1</a></p>
+ <p data-sourcepos="1:1-1:92" dir="auto">Hi <a href="/gfm_user" data-user="1" data-reference-type="user" data-container="body" data-placement="top" class="gfm gfm-project_member js-user-link" title="John Doe1">@gfm_user</a> - thank you for reporting this bug (<a href="/group1/project1/-/issues/1" data-original="#1" data-link="false" data-link-reference="false" data-project="11" data-issue="11" data-issue-type="issue" data-reference-type="issue" data-container="body" data-placement="top" title="My title 1" class="gfm gfm-issue has-tooltip">#1</a>) we hope to fix it in <a href="/group1/project1/-/milestones/1" data-original="%1.1" data-link="false" data-link-reference="false" data-project="11" data-milestone="11" data-reference-type="milestone" data-container="body" data-placement="top" title="" class="gfm gfm-milestone has-tooltip">%1.1</a> as part of <a href="/group1/project1/-/merge_requests/1" data-original="!1" data-link="false" data-link-reference="false" data-project="11" data-merge-request="11" data-project-path="group1/project1" data-iid="1" data-mr-title="My title 2" data-reference-type="merge_request" data-container="body" data-placement="top" title="" class="gfm gfm-merge_request">!1</a></p>
- name: strike
markdown: |-
~~del~~
diff --git a/spec/fixtures/security_reports/master/gl-common-scanning-report.json b/spec/fixtures/security_reports/master/gl-common-scanning-report.json
index 1fb00b2ff3a..787573301bb 100644
--- a/spec/fixtures/security_reports/master/gl-common-scanning-report.json
+++ b/spec/fixtures/security_reports/master/gl-common-scanning-report.json
@@ -1,300 +1,422 @@
{
- "vulnerabilities": [
- {
- "category": "dependency_scanning",
- "name": "Vulnerabilities in libxml2",
- "message": "Vulnerabilities in libxml2 in nokogiri",
- "description": "",
- "cve": "CVE-1020",
- "severity": "High",
- "solution": "Upgrade to latest version.",
- "scanner": {
- "id": "gemnasium",
- "name": "Gemnasium"
- },
- "evidence": {
- "source": {
- "id": "assert:CORS - Bad 'Origin' value",
- "name": "CORS - Bad 'Origin' value"
- },
- "summary": "The Origin header was changed to an invalid value of http://peachapisecurity.com and the response contained an Access-Control-Allow-Origin header which included this invalid Origin, indicating that the CORS configuration on the server is overly permissive.\n\n\n",
- "request": {
- "headers": [
- {
- "name": "Host",
- "value": "127.0.0.1:7777"
- }
- ],
- "method": "GET",
- "url": "http://127.0.0.1:7777/api/users",
- "body": ""
- },
- "response": {
- "headers": [
- {
- "name": "Server",
- "value": "TwistedWeb/20.3.0"
- }
- ],
- "reason_phrase": "OK",
- "status_code": 200,
- "body": "[{\"user_id\":1,\"user\":\"admin\",\"first\":\"Joe\",\"last\":\"Smith\",\"password\":\"Password!\"}]"
- },
- "supporting_messages": [
- {
- "name": "Origional",
- "request": {
- "headers": [
- {
- "name": "Host",
- "value": "127.0.0.1:7777"
- }
- ],
- "method": "GET",
- "url": "http://127.0.0.1:7777/api/users",
- "body": ""
- }
- },
- {
- "name": "Recorded",
- "request": {
- "headers": [
- {
- "name": "Host",
- "value": "127.0.0.1:7777"
- }
- ],
- "method": "GET",
- "url": "http://127.0.0.1:7777/api/users",
- "body": ""
- },
- "response": {
- "headers": [
- {
- "name": "Server",
- "value": "TwistedWeb/20.3.0"
- }
- ],
- "reason_phrase": "OK",
- "status_code": 200,
- "body": "[{\"user_id\":1,\"user\":\"admin\",\"first\":\"Joe\",\"last\":\"Smith\",\"password\":\"Password!\"}]"
- }
- }
- ]
- },
- "location": {},
- "identifiers": [
- {
- "type": "GitLab",
- "name": "Foo vulnerability",
- "value": "foo"
- }
- ],
- "links": [
- {
- "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1020"
- }
- ],
- "details": {
- "commit": {
- "name": [
- {
- "lang": "en",
- "value": "The Commit"
- }
- ],
- "description": [
- {
- "lang": "en",
- "value": "Commit where the vulnerability was identified"
- }
- ],
- "type": "commit",
- "value": "41df7b7eb3be2b5be2c406c2f6d28cd6631eeb19"
- }
- }
+ "vulnerabilities": [{
+ "category": "dependency_scanning",
+ "name": "Vulnerability for remediation testing 1",
+ "message": "This vulnerability should have ONE remediation",
+ "description": "",
+ "cve": "CVE-2137",
+ "severity": "High",
+ "solution": "Upgrade to latest version.",
+ "scanner": {
+ "id": "gemnasium",
+ "name": "Gemnasium"
+ },
+ "location": {},
+ "identifiers": [{
+ "type": "GitLab",
+ "name": "Foo vulnerability",
+ "value": "foo"
+ }],
+ "links": [{
+ "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-2137"
+ }],
+ "details": {
+ "commit": {
+ "name": [{
+ "lang": "en",
+ "value": "The Commit"
+ }],
+ "description": [{
+ "lang": "en",
+ "value": "Commit where the vulnerability was identified"
+ }],
+ "type": "commit",
+ "value": "41df7b7eb3be2b5be2c406c2f6d28cd6631eeb19"
+ }
+ }
+ },
+ {
+ "category": "dependency_scanning",
+ "name": "Vulnerability for remediation testing 2",
+ "message": "This vulnerability should have ONE remediation",
+ "description": "",
+ "cve": "CVE-2138",
+ "severity": "High",
+ "solution": "Upgrade to latest version.",
+ "scanner": {
+ "id": "gemnasium",
+ "name": "Gemnasium"
+ },
+ "location": {},
+ "identifiers": [{
+ "type": "GitLab",
+ "name": "Foo vulnerability",
+ "value": "foo"
+ }],
+ "links": [{
+ "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-2138"
+ }],
+ "details": {
+ "commit": {
+ "name": [{
+ "lang": "en",
+ "value": "The Commit"
+ }],
+ "description": [{
+ "lang": "en",
+ "value": "Commit where the vulnerability was identified"
+ }],
+ "type": "commit",
+ "value": "41df7b7eb3be2b5be2c406c2f6d28cd6631eeb19"
+ }
+ }
+ },
+ {
+ "category": "dependency_scanning",
+ "name": "Vulnerability for remediation testing 3",
+ "message": "Remediation for this vulnerability should remediate CVE-2140 as well",
+ "description": "",
+ "cve": "CVE-2139",
+ "severity": "High",
+ "solution": "Upgrade to latest version.",
+ "scanner": {
+ "id": "gemnasium",
+ "name": "Gemnasium"
+ },
+ "location": {},
+ "identifiers": [{
+ "type": "GitLab",
+ "name": "Foo vulnerability",
+ "value": "foo"
+ }],
+ "links": [{
+ "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-2139"
+ }],
+ "details": {
+ "commit": {
+ "name": [{
+ "lang": "en",
+ "value": "The Commit"
+ }],
+ "description": [{
+ "lang": "en",
+ "value": "Commit where the vulnerability was identified"
+ }],
+ "type": "commit",
+ "value": "41df7b7eb3be2b5be2c406c2f6d28cd6631eeb19"
+ }
+ }
+ },
+ {
+ "category": "dependency_scanning",
+ "name": "Vulnerability for remediation testing 4",
+ "message": "Remediation for this vulnerability should remediate CVE-2139 as well",
+ "description": "",
+ "cve": "CVE-2140",
+ "severity": "High",
+ "solution": "Upgrade to latest version.",
+ "scanner": {
+ "id": "gemnasium",
+ "name": "Gemnasium"
+ },
+ "location": {},
+ "identifiers": [{
+ "type": "GitLab",
+ "name": "Foo vulnerability",
+ "value": "foo"
+ }],
+ "links": [{
+ "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-2140"
+ }],
+ "details": {
+ "commit": {
+ "name": [{
+ "lang": "en",
+ "value": "The Commit"
+ }],
+ "description": [{
+ "lang": "en",
+ "value": "Commit where the vulnerability was identified"
+ }],
+ "type": "commit",
+ "value": "41df7b7eb3be2b5be2c406c2f6d28cd6631eeb19"
+ }
+ }
+ },
+ {
+ "category": "dependency_scanning",
+ "name": "Vulnerabilities in libxml2",
+ "message": "Vulnerabilities in libxml2 in nokogiri",
+ "description": "",
+ "cve": "CVE-1020",
+ "severity": "High",
+ "solution": "Upgrade to latest version.",
+ "scanner": {
+ "id": "gemnasium",
+ "name": "Gemnasium"
+ },
+ "evidence": {
+ "source": {
+ "id": "assert:CORS - Bad 'Origin' value",
+ "name": "CORS - Bad 'Origin' value"
},
- {
- "id": "bb2fbeb1b71ea360ce3f86f001d4e84823c3ffe1a1f7d41ba7466b14cfa953d3",
- "category": "dependency_scanning",
- "name": "Regular Expression Denial of Service",
- "message": "Regular Expression Denial of Service in debug",
- "description": "",
- "cve": "CVE-1030",
- "severity": "Unknown",
- "solution": "Upgrade to latest versions.",
- "scanner": {
- "id": "gemnasium",
- "name": "Gemnasium"
- },
- "evidence": {
- "source": {
- "id": "assert:CORS - Bad 'Origin' value",
- "name": "CORS - Bad 'Origin' value"
- },
- "summary": "The Origin header was changed to an invalid value of http://peachapisecurity.com and the response contained an Access-Control-Allow-Origin header which included this invalid Origin, indicating that the CORS configuration on the server is overly permissive.\n\n\n",
- "request": {
- "headers": [
- {
- "name": "Host",
- "value": "127.0.0.1:7777"
- }
- ],
- "method": "GET",
- "url": "http://127.0.0.1:7777/api/users",
- "body": ""
- },
- "response": {
- "headers": [
- {
- "name": "Server",
- "value": "TwistedWeb/20.3.0"
- }
- ],
- "reason_phrase": "OK",
- "status_code": 200,
- "body": "[{\"user_id\":1,\"user\":\"admin\",\"first\":\"Joe\",\"last\":\"Smith\",\"password\":\"Password!\"}]"
- },
- "supporting_messages": [
- {
- "name": "Origional",
- "request": {
- "headers": [
- {
- "name": "Host",
- "value": "127.0.0.1:7777"
- }
- ],
- "method": "GET",
- "url": "http://127.0.0.1:7777/api/users",
- "body": ""
- }
- },
- {
- "name": "Recorded",
- "request": {
- "headers": [
- {
- "name": "Host",
- "value": "127.0.0.1:7777"
- }
- ],
- "method": "GET",
- "url": "http://127.0.0.1:7777/api/users",
- "body": ""
- },
- "response": {
- "headers": [
- {
- "name": "Server",
- "value": "TwistedWeb/20.3.0"
- }
- ],
- "reason_phrase": "OK",
- "status_code": 200,
- "body": "[{\"user_id\":1,\"user\":\"admin\",\"first\":\"Joe\",\"last\":\"Smith\",\"password\":\"Password!\"}]"
- }
- }
- ]
- },
- "location": {},
- "identifiers": [
- {
- "type": "GitLab",
- "name": "Bar vulnerability",
- "value": "bar"
- }
- ],
- "links": [
- {
- "name": "CVE-1030",
- "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1030"
- }
- ]
+ "summary": "The Origin header was changed to an invalid value of http://peachapisecurity.com and the response contained an Access-Control-Allow-Origin header which included this invalid Origin, indicating that the CORS configuration on the server is overly permissive.\n\n\n",
+ "request": {
+ "headers": [{
+ "name": "Host",
+ "value": "127.0.0.1:7777"
+ }],
+ "method": "GET",
+ "url": "http://127.0.0.1:7777/api/users",
+ "body": ""
},
- {
- "category": "dependency_scanning",
- "name": "Authentication bypass via incorrect DOM traversal and canonicalization",
- "message": "Authentication bypass via incorrect DOM traversal and canonicalization in saml2-js",
- "description": "",
- "cve": "yarn/yarn.lock:saml2-js:gemnasium:9952e574-7b5b-46fa-a270-aeb694198a98",
- "severity": "Unknown",
- "solution": "Upgrade to fixed version.\r\n",
- "scanner": {
- "id": "gemnasium",
- "name": "Gemnasium"
+ "response": {
+ "headers": [{
+ "name": "Server",
+ "value": "TwistedWeb/20.3.0"
+ }],
+ "reason_phrase": "OK",
+ "status_code": 200,
+ "body": "[{\"user_id\":1,\"user\":\"admin\",\"first\":\"Joe\",\"last\":\"Smith\",\"password\":\"Password!\"}]"
+ },
+ "supporting_messages": [{
+ "name": "Origional",
+ "request": {
+ "headers": [{
+ "name": "Host",
+ "value": "127.0.0.1:7777"
+ }],
+ "method": "GET",
+ "url": "http://127.0.0.1:7777/api/users",
+ "body": ""
+ }
+ },
+ {
+ "name": "Recorded",
+ "request": {
+ "headers": [{
+ "name": "Host",
+ "value": "127.0.0.1:7777"
+ }],
+ "method": "GET",
+ "url": "http://127.0.0.1:7777/api/users",
+ "body": ""
},
- "location": {},
- "identifiers": [],
- "links": [
- ]
+ "response": {
+ "headers": [{
+ "name": "Server",
+ "value": "TwistedWeb/20.3.0"
+ }],
+ "reason_phrase": "OK",
+ "status_code": 200,
+ "body": "[{\"user_id\":1,\"user\":\"admin\",\"first\":\"Joe\",\"last\":\"Smith\",\"password\":\"Password!\"}]"
+ }
+ }
+ ]
+ },
+ "location": {},
+ "identifiers": [{
+ "type": "GitLab",
+ "name": "Foo vulnerability",
+ "value": "foo"
+ }],
+ "links": [{
+ "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1020"
+ }],
+ "details": {
+ "commit": {
+ "name": [{
+ "lang": "en",
+ "value": "The Commit"
+ }],
+ "description": [{
+ "lang": "en",
+ "value": "Commit where the vulnerability was identified"
+ }],
+ "type": "commit",
+ "value": "41df7b7eb3be2b5be2c406c2f6d28cd6631eeb19"
}
- ],
- "remediations": [
- {
- "fixes": [
- {
- "cve": "CVE-1020"
- }
- ],
- "summary": "",
- "diff": ""
- },
- {
- "fixes": [
- {
- "cve": "CVE",
- "id": "bb2fbeb1b71ea360ce3f86f001d4e84823c3ffe1a1f7d41ba7466b14cfa953d3"
- }
- ],
- "summary": "",
- "diff": ""
+ }
+ },
+ {
+ "id": "bb2fbeb1b71ea360ce3f86f001d4e84823c3ffe1a1f7d41ba7466b14cfa953d3",
+ "category": "dependency_scanning",
+ "name": "Regular Expression Denial of Service",
+ "message": "Regular Expression Denial of Service in debug",
+ "description": "",
+ "cve": "CVE-1030",
+ "severity": "Unknown",
+ "solution": "Upgrade to latest versions.",
+ "scanner": {
+ "id": "gemnasium",
+ "name": "Gemnasium"
+ },
+ "evidence": {
+ "source": {
+ "id": "assert:CORS - Bad 'Origin' value",
+ "name": "CORS - Bad 'Origin' value"
},
- {
- "fixes": [
- {
- "cve": "CVE",
- "id": "bb2fbeb1b71ea360ce3f86f001d4e84823c3ffe1a1f7d41ba7466b14cfa953d3"
- }
- ],
- "summary": "",
- "diff": ""
+ "summary": "The Origin header was changed to an invalid value of http://peachapisecurity.com and the response contained an Access-Control-Allow-Origin header which included this invalid Origin, indicating that the CORS configuration on the server is overly permissive.\n\n\n",
+ "request": {
+ "headers": [{
+ "name": "Host",
+ "value": "127.0.0.1:7777"
+ }],
+ "method": "GET",
+ "url": "http://127.0.0.1:7777/api/users",
+ "body": ""
},
- {
- "fixes": [
- {
- "id": "2134",
- "cve": "CVE-1"
- }
- ],
- "summary": "",
- "diff": ""
- }
- ],
- "dependency_files": [],
- "scan": {
- "analyzer": {
- "id": "common-analyzer",
- "name": "Common Analyzer",
- "url": "https://site.com/analyzer/common",
- "version": "2.0.1",
- "vendor": {
- "name": "Common"
- }
+ "response": {
+ "headers": [{
+ "name": "Server",
+ "value": "TwistedWeb/20.3.0"
+ }],
+ "reason_phrase": "OK",
+ "status_code": 200,
+ "body": "[{\"user_id\":1,\"user\":\"admin\",\"first\":\"Joe\",\"last\":\"Smith\",\"password\":\"Password!\"}]"
},
- "scanner": {
- "id": "gemnasium",
- "name": "Gemnasium",
- "url": "https://gitlab.com/gitlab-org/security-products/analyzers/gemnasium-maven",
- "vendor": {
- "name": "GitLab"
+ "supporting_messages": [{
+ "name": "Origional",
+ "request": {
+ "headers": [{
+ "name": "Host",
+ "value": "127.0.0.1:7777"
+ }],
+ "method": "GET",
+ "url": "http://127.0.0.1:7777/api/users",
+ "body": ""
+ }
+ },
+ {
+ "name": "Recorded",
+ "request": {
+ "headers": [{
+ "name": "Host",
+ "value": "127.0.0.1:7777"
+ }],
+ "method": "GET",
+ "url": "http://127.0.0.1:7777/api/users",
+ "body": ""
},
- "version": "2.18.0"
- },
- "type": "dependency_scanning",
- "start_time": "placeholder-value",
- "end_time": "placeholder-value",
- "status": "success"
+ "response": {
+ "headers": [{
+ "name": "Server",
+ "value": "TwistedWeb/20.3.0"
+ }],
+ "reason_phrase": "OK",
+ "status_code": 200,
+ "body": "[{\"user_id\":1,\"user\":\"admin\",\"first\":\"Joe\",\"last\":\"Smith\",\"password\":\"Password!\"}]"
+ }
+ }
+ ]
+ },
+ "location": {},
+ "identifiers": [{
+ "type": "GitLab",
+ "name": "Bar vulnerability",
+ "value": "bar"
+ }],
+ "links": [{
+ "name": "CVE-1030",
+ "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1030"
+ }]
+ },
+ {
+ "category": "dependency_scanning",
+ "name": "Authentication bypass via incorrect DOM traversal and canonicalization",
+ "message": "Authentication bypass via incorrect DOM traversal and canonicalization in saml2-js",
+ "description": "",
+ "cve": "yarn/yarn.lock:saml2-js:gemnasium:9952e574-7b5b-46fa-a270-aeb694198a98",
+ "severity": "Unknown",
+ "solution": "Upgrade to fixed version.\r\n",
+ "scanner": {
+ "id": "gemnasium",
+ "name": "Gemnasium"
+ },
+ "location": {},
+ "identifiers": [],
+ "links": []
+ }
+ ],
+ "remediations": [{
+ "fixes": [{
+ "cve": "CVE-2137"
+ }],
+ "summary": "this remediates CVE-2137",
+ "diff": "dG90YWxseSBsZWdpdCBkaWZm"
+ },
+ {
+ "fixes": [{
+ "cve": "CVE-2138"
+ }],
+ "summary": "this remediates CVE-2138",
+ "diff": "dG90YWxseSBsZWdpdCBkaWZm"
+ },
+ {
+ "fixes": [{
+ "cve": "CVE-2139"
+ }, {
+ "cve": "CVE-2140"
+ }],
+ "summary": "this remediates CVE-2139 and CVE-2140",
+ "diff": "dG90YWxseSBsZWdpdGltYXRlIGRpZmYsIDEwLzEwIHdvdWxkIGFwcGx5"
+ },
+ {
+ "fixes": [{
+ "cve": "CVE-1020"
+ }],
+ "summary": "",
+ "diff": ""
+ },
+ {
+ "fixes": [{
+ "cve": "CVE",
+ "id": "bb2fbeb1b71ea360ce3f86f001d4e84823c3ffe1a1f7d41ba7466b14cfa953d3"
+ }],
+ "summary": "",
+ "diff": ""
+ },
+ {
+ "fixes": [{
+ "cve": "CVE",
+ "id": "bb2fbeb1b71ea360ce3f86f001d4e84823c3ffe1a1f7d41ba7466b14cfa953d3"
+ }],
+ "summary": "",
+ "diff": ""
+ },
+ {
+ "fixes": [{
+ "id": "2134",
+ "cve": "CVE-1"
+ }],
+ "summary": "",
+ "diff": ""
+ }
+ ],
+ "dependency_files": [],
+ "scan": {
+ "analyzer": {
+ "id": "common-analyzer",
+ "name": "Common Analyzer",
+ "url": "https://site.com/analyzer/common",
+ "version": "2.0.1",
+ "vendor": {
+ "name": "Common"
+ }
+ },
+ "scanner": {
+ "id": "gemnasium",
+ "name": "Gemnasium",
+ "url": "https://gitlab.com/gitlab-org/security-products/analyzers/gemnasium-maven",
+ "vendor": {
+ "name": "GitLab"
+ },
+ "version": "2.18.0"
},
- "version": "14.0.2"
+ "type": "dependency_scanning",
+ "start_time": "placeholder-value",
+ "end_time": "placeholder-value",
+ "status": "success"
+ },
+ "version": "14.0.2"
}