Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures')
-rw-r--r--spec/fixtures/api/schemas/entities/commit.json2
-rw-r--r--spec/fixtures/api/schemas/entities/github/user.json2
-rw-r--r--spec/fixtures/api/schemas/entities/member.json2
-rw-r--r--spec/fixtures/api/schemas/entities/merge_request_basic.json1
-rw-r--r--spec/fixtures/api/schemas/entities/note_user_entity.json2
-rw-r--r--spec/fixtures/api/schemas/entities/user.json2
-rw-r--r--spec/fixtures/api/schemas/public_api/v4/commit/basic.json6
-rw-r--r--spec/fixtures/api/schemas/public_api/v4/deploy_key.json3
-rw-r--r--spec/fixtures/api/schemas/public_api/v4/environment.json5
-rw-r--r--spec/fixtures/api/schemas/public_api/v4/metadata.json26
-rw-r--r--spec/fixtures/api/schemas/public_api/v4/packages/terraform/modules/v1/single_version.json55
-rw-r--r--spec/fixtures/api/schemas/public_api/v4/project_hook.json62
-rw-r--r--spec/fixtures/api/schemas/public_api/v4/project_hooks.json10
-rw-r--r--spec/fixtures/api/schemas/public_api/v4/system_hook.json16
-rw-r--r--spec/fixtures/api/schemas/public_api/v4/user/basic.json2
-rw-r--r--spec/fixtures/api/schemas/public_api/v4/user/public.json2
-rw-r--r--spec/fixtures/csv_complex.csv6
-rw-r--r--spec/fixtures/emails/service_desk.eml1
-rw-r--r--spec/fixtures/gitlab/git/gitattributes16
-rw-r--r--spec/fixtures/gitlab/git/gitattributes_invalidbin0 -> 16 bytes
-rw-r--r--spec/fixtures/gitlab/import_export/labels.tar.gzbin0 -> 768 bytes
-rw-r--r--spec/fixtures/glfm/example_snapshots/examples_index.yml2017
-rw-r--r--spec/fixtures/glfm/example_snapshots/html.yml7479
-rw-r--r--spec/fixtures/glfm/example_snapshots/markdown.yml2201
-rw-r--r--spec/fixtures/glfm/example_snapshots/prosemirror_json.yml17018
-rw-r--r--spec/fixtures/lib/gitlab/import_export/complex/project.json82
-rw-r--r--spec/fixtures/lib/gitlab/import_export/complex/tree/project/releases.ndjson4
-rw-r--r--spec/fixtures/product_intelligence/survey_response_schema.json58
28 files changed, 287 insertions, 28793 deletions
diff --git a/spec/fixtures/api/schemas/entities/commit.json b/spec/fixtures/api/schemas/entities/commit.json
index 324702e3f94..ed08c35f89b 100644
--- a/spec/fixtures/api/schemas/entities/commit.json
+++ b/spec/fixtures/api/schemas/entities/commit.json
@@ -11,7 +11,7 @@
"author"
],
"properties": {
- "author_gravatar_url": { "type": "string" },
+ "author_gravatar_url": { "type": [ "string", "null" ] },
"commit_url": { "type": "string" },
"commit_path": { "type": "string" },
"author": {
diff --git a/spec/fixtures/api/schemas/entities/github/user.json b/spec/fixtures/api/schemas/entities/github/user.json
index 3d772a0c648..23db912ad5c 100644
--- a/spec/fixtures/api/schemas/entities/github/user.json
+++ b/spec/fixtures/api/schemas/entities/github/user.json
@@ -5,7 +5,7 @@
"id": { "type": "integer" },
"login": { "type": "string" },
"url": { "type": "string" },
- "avatar_url": { "type": "string" },
+ "avatar_url": { "type": [ "string", "null" ] },
"html_url": { "type": "string" }
},
"additionalProperties": false
diff --git a/spec/fixtures/api/schemas/entities/member.json b/spec/fixtures/api/schemas/entities/member.json
index 88f7d87b269..24a4863df9b 100644
--- a/spec/fixtures/api/schemas/entities/member.json
+++ b/spec/fixtures/api/schemas/entities/member.json
@@ -62,7 +62,7 @@
"required": ["email", "avatar_url", "can_resend", "user_state"],
"properties": {
"email": { "type": "string" },
- "avatar_url": { "type": "string" },
+ "avatar_url": { "type": [ "string", "null" ] },
"can_resend": { "type": "boolean" },
"user_state": { "type": "string" }
},
diff --git a/spec/fixtures/api/schemas/entities/merge_request_basic.json b/spec/fixtures/api/schemas/entities/merge_request_basic.json
index b061176f6a7..bda9f6573ea 100644
--- a/spec/fixtures/api/schemas/entities/merge_request_basic.json
+++ b/spec/fixtures/api/schemas/entities/merge_request_basic.json
@@ -7,6 +7,7 @@
"source_branch_exists": { "type": "boolean" },
"merge_error": { "type": ["string", "null"] },
"rebase_in_progress": { "type": "boolean" },
+ "should_be_rebased": { "type": "boolean" },
"allow_collaboration": { "type": "boolean"},
"allow_maintainer_to_push": { "type": "boolean"},
"assignees": {
diff --git a/spec/fixtures/api/schemas/entities/note_user_entity.json b/spec/fixtures/api/schemas/entities/note_user_entity.json
index e2bbaad7201..f5d28dd7b71 100644
--- a/spec/fixtures/api/schemas/entities/note_user_entity.json
+++ b/spec/fixtures/api/schemas/entities/note_user_entity.json
@@ -11,7 +11,7 @@
"properties": {
"id": { "type": "integer" },
"state": { "type": "string" },
- "avatar_url": { "type": "string" },
+ "avatar_url": { "type": [ "string", "null" ] },
"path": { "type": "string" },
"name": { "type": "string" },
"username": { "type": "string" },
diff --git a/spec/fixtures/api/schemas/entities/user.json b/spec/fixtures/api/schemas/entities/user.json
index 3252a37c82a..984b7184d36 100644
--- a/spec/fixtures/api/schemas/entities/user.json
+++ b/spec/fixtures/api/schemas/entities/user.json
@@ -12,7 +12,7 @@
"properties": {
"id": { "type": "integer" },
"state": { "type": "string" },
- "avatar_url": { "type": "string" },
+ "avatar_url": { "type": [ "string", "null" ] },
"web_url": { "type": "string" },
"path": { "type": "string" },
"name": { "type": "string" },
diff --git a/spec/fixtures/api/schemas/public_api/v4/commit/basic.json b/spec/fixtures/api/schemas/public_api/v4/commit/basic.json
index 227b5a20af3..da7a9fcb7f3 100644
--- a/spec/fixtures/api/schemas/public_api/v4/commit/basic.json
+++ b/spec/fixtures/api/schemas/public_api/v4/commit/basic.json
@@ -19,7 +19,7 @@
"id": { "type": ["string", "null"] },
"short_id": { "type": ["string", "null"] },
"title": { "type": "string" },
- "created_at": { "type": "string", "format": "date-time" },
+ "created_at": { "type": "string" },
"parent_ids": {
"type": ["array", "null"],
"items": {
@@ -30,10 +30,10 @@
"message": { "type": "string" },
"author_name": { "type": "string" },
"author_email": { "type": "string" },
- "authored_date": { "type": "string", "format": "date-time" },
+ "authored_date": { "type": "string" },
"committer_name": { "type": "string" },
"committer_email": { "type": "string" },
- "committed_date": { "type": "string", "format": "date-time" },
+ "committed_date": { "type": "string" },
"web_url": { "type": "string" }
}
}
diff --git a/spec/fixtures/api/schemas/public_api/v4/deploy_key.json b/spec/fixtures/api/schemas/public_api/v4/deploy_key.json
index 3dbdfcc95a1..99e57a4c218 100644
--- a/spec/fixtures/api/schemas/public_api/v4/deploy_key.json
+++ b/spec/fixtures/api/schemas/public_api/v4/deploy_key.json
@@ -6,7 +6,7 @@
"created_at",
"expires_at",
"key",
- "fingerprint",
+ "fingerprint_sha256",
"projects_with_write_access"
],
"properties": {
@@ -16,6 +16,7 @@
"expires_at": { "type": ["string", "null"], "format": "date-time" },
"key": { "type": "string" },
"fingerprint": { "type": "string" },
+ "fingerprint_sha256": { "type": "string" },
"projects_with_write_access": {
"type": "array",
"items": { "$ref": "project/identity.json" }
diff --git a/spec/fixtures/api/schemas/public_api/v4/environment.json b/spec/fixtures/api/schemas/public_api/v4/environment.json
index 3a4c18343e3..21888d88598 100644
--- a/spec/fixtures/api/schemas/public_api/v4/environment.json
+++ b/spec/fixtures/api/schemas/public_api/v4/environment.json
@@ -25,10 +25,7 @@
"state": { "type": "string" },
"created_at": { "type": "string", "format": "date-time" },
"updated_at": { "type": "string", "format": "date-time" },
- "project": { "$ref": "project.json" },
- "enable_advanced_logs_querying": { "type": "boolean" },
- "logs_api_path": { "type": "string" },
- "gitlab_managed_apps_logs_path": { "type": "string" }
+ "project": { "$ref": "project.json" }
},
"additionalProperties": false
}
diff --git a/spec/fixtures/api/schemas/public_api/v4/metadata.json b/spec/fixtures/api/schemas/public_api/v4/metadata.json
new file mode 100644
index 00000000000..fd219b95df8
--- /dev/null
+++ b/spec/fixtures/api/schemas/public_api/v4/metadata.json
@@ -0,0 +1,26 @@
+{
+ "type": "object",
+ "required": [
+ "version",
+ "revision",
+ "kas"
+ ],
+ "properties": {
+ "version": { "type": "string" },
+ "revision": { "type": "string" },
+ "kas": {
+ "type": "object",
+ "required": [
+ "enabled",
+ "externalUrl",
+ "version"
+ ],
+ "properties": {
+ "enabled": { "type": "boolean" },
+ "externalUrl": { "type": ["string", "null"] },
+ "version": { "type": ["string", "null"] }
+ }
+ }
+ },
+ "additionalProperties": false
+}
diff --git a/spec/fixtures/api/schemas/public_api/v4/packages/terraform/modules/v1/single_version.json b/spec/fixtures/api/schemas/public_api/v4/packages/terraform/modules/v1/single_version.json
new file mode 100644
index 00000000000..689b9427f38
--- /dev/null
+++ b/spec/fixtures/api/schemas/public_api/v4/packages/terraform/modules/v1/single_version.json
@@ -0,0 +1,55 @@
+{
+ "type": "object",
+ "required": [
+ "name",
+ "provider",
+ "providers",
+ "root",
+ "source",
+ "submodules",
+ "version",
+ "versions"
+ ],
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "provider": {
+ "type": "string"
+ },
+ "providers": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ },
+ "root": {
+ "type": "object",
+ "required": [
+ "dependencies"
+ ],
+ "properties": {
+ "dependencies": {
+ "type": "array",
+ "maxItems": 0
+ }
+ }
+ },
+ "source": {
+ "type": "string"
+ },
+ "submodules": {
+ "type": "array",
+ "maxItems": 0
+ },
+ "version": {
+ "type": "string"
+ },
+ "versions": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ }
+ }
+} \ No newline at end of file
diff --git a/spec/fixtures/api/schemas/public_api/v4/project_hook.json b/spec/fixtures/api/schemas/public_api/v4/project_hook.json
new file mode 100644
index 00000000000..6070f3a55f9
--- /dev/null
+++ b/spec/fixtures/api/schemas/public_api/v4/project_hook.json
@@ -0,0 +1,62 @@
+{
+ "type": "object",
+ "required": [
+ "id",
+ "url",
+ "created_at",
+ "push_events",
+ "push_events_branch_filter",
+ "tag_push_events",
+ "merge_requests_events",
+ "repository_update_events",
+ "enable_ssl_verification",
+ "project_id",
+ "issues_events",
+ "confidential_issues_events",
+ "note_events",
+ "confidential_note_events",
+ "pipeline_events",
+ "wiki_page_events",
+ "job_events",
+ "deployment_events",
+ "releases_events",
+ "alert_status",
+ "disabled_until",
+ "url_variables"
+ ],
+ "properties": {
+ "id": { "type": "integer" },
+ "project_id": { "type": "integer" },
+ "url": { "type": "string" },
+ "created_at": { "type": "string", "format": "date-time" },
+ "push_events": { "type": "boolean" },
+ "push_events_branch_filter": { "type": ["string", "null"] },
+ "tag_push_events": { "type": "boolean" },
+ "merge_requests_events": { "type": "boolean" },
+ "repository_update_events": { "type": "boolean" },
+ "enable_ssl_verification": { "type": "boolean" },
+ "issues_events": { "type": "boolean" },
+ "confidential_issues_events": { "type": ["boolean", "null"] },
+ "note_events": { "type": "boolean" },
+ "confidential_note_events": { "type": ["boolean", "null"] },
+ "pipeline_events": { "type": "boolean" },
+ "wiki_page_events": { "type": "boolean" },
+ "job_events": { "type": "boolean" },
+ "deployment_events": { "type": "boolean" },
+ "releases_events": { "type": "boolean" },
+ "alert_status": { "type": "string", "enum": ["executable","disabled","temporarily_disabled"] },
+ "disabled_until": { "type": ["string", "null"] },
+ "url_variables": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "additionalProperties": false,
+ "required": ["key"],
+ "properties": {
+ "key": { "type": "string" }
+ }
+ }
+ }
+ },
+ "additionalProperties": false
+}
diff --git a/spec/fixtures/api/schemas/public_api/v4/project_hooks.json b/spec/fixtures/api/schemas/public_api/v4/project_hooks.json
new file mode 100644
index 00000000000..8c542ebe3ad
--- /dev/null
+++ b/spec/fixtures/api/schemas/public_api/v4/project_hooks.json
@@ -0,0 +1,10 @@
+{
+ "type": "array",
+ "items": {
+ "type": "object",
+ "properties" : {
+ "$ref": "./project_hook.json"
+ }
+ }
+}
+
diff --git a/spec/fixtures/api/schemas/public_api/v4/system_hook.json b/spec/fixtures/api/schemas/public_api/v4/system_hook.json
index 3fe3e0d658e..b6f56b948a0 100644
--- a/spec/fixtures/api/schemas/public_api/v4/system_hook.json
+++ b/spec/fixtures/api/schemas/public_api/v4/system_hook.json
@@ -10,7 +10,8 @@
"repository_update_events",
"enable_ssl_verification",
"alert_status",
- "disabled_until"
+ "disabled_until",
+ "url_variables"
],
"properties": {
"id": { "type": "integer" },
@@ -22,7 +23,18 @@
"repository_update_events": { "type": "boolean" },
"enable_ssl_verification": { "type": "boolean" },
"alert_status": { "type": "string", "enum": ["executable", "disabled", "temporarily_disabled"] },
- "disabled_until": { "type": ["string", "null"] }
+ "disabled_until": { "type": ["string", "null"] },
+ "url_variables": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "additionalProperties": false,
+ "required": ["key"],
+ "properties": {
+ "key": { "type": "string" }
+ }
+ }
+ }
},
"additionalProperties": false
}
diff --git a/spec/fixtures/api/schemas/public_api/v4/user/basic.json b/spec/fixtures/api/schemas/public_api/v4/user/basic.json
index 2d815be32a6..d8286f0d84c 100644
--- a/spec/fixtures/api/schemas/public_api/v4/user/basic.json
+++ b/spec/fixtures/api/schemas/public_api/v4/user/basic.json
@@ -13,7 +13,7 @@
"name": { "type": "string" },
"username": { "type": "string" },
"state": { "type": "string" },
- "avatar_url": { "type": "string" },
+ "avatar_url": { "type": [ "string", "null" ] },
"web_url": { "type": "string" }
}
}
diff --git a/spec/fixtures/api/schemas/public_api/v4/user/public.json b/spec/fixtures/api/schemas/public_api/v4/user/public.json
index 0955c70aef0..c4549e3ef63 100644
--- a/spec/fixtures/api/schemas/public_api/v4/user/public.json
+++ b/spec/fixtures/api/schemas/public_api/v4/user/public.json
@@ -39,7 +39,7 @@
"type": "string",
"enum": ["active", "blocked"]
},
- "avatar_url": { "type": "string" },
+ "avatar_url": { "type": [ "string", "null" ] },
"web_url": { "type": "string" },
"created_at": { "type": "string", "format": "date-time" },
"bio": { "type": ["string", "null"] },
diff --git a/spec/fixtures/csv_complex.csv b/spec/fixtures/csv_complex.csv
new file mode 100644
index 00000000000..60d8aa5d6f7
--- /dev/null
+++ b/spec/fixtures/csv_complex.csv
@@ -0,0 +1,6 @@
+title,description,due date
+Issue in 中文,Test description,
+"Hello","World",
+"Title with quote""","Description
+/assign @csv_assignee
+/estimate 1h",2022-06-28
diff --git a/spec/fixtures/emails/service_desk.eml b/spec/fixtures/emails/service_desk.eml
index 0db1270bc64..102f29542ae 100644
--- a/spec/fixtures/emails/service_desk.eml
+++ b/spec/fixtures/emails/service_desk.eml
@@ -6,6 +6,7 @@ Received: by 10.0.0.1 with HTTP; Thu, 13 Jun 2013 14:03:48 -0700
Date: Thu, 13 Jun 2013 17:03:48 -0400
From: Jake the Dog <jake@adventuretime.ooo>
To: incoming+email-test-project_id-issue-@appmail.adventuretime.ooo
+Cc: Carbon Copy <cc@example.com>, kk@example.org
Message-ID: <CADkmRc+rNGAGGbV2iE5p918UVy4UyJqVcXRO2=otppgzduJSg@mail.gmail.com>
Subject: The message subject! @all
Mime-Version: 1.0
diff --git a/spec/fixtures/gitlab/git/gitattributes b/spec/fixtures/gitlab/git/gitattributes
new file mode 100644
index 00000000000..bfe9c8e4ed2
--- /dev/null
+++ b/spec/fixtures/gitlab/git/gitattributes
@@ -0,0 +1,16 @@
+# This is a comment, it should be ignored.
+
+*.txt text
+*.jpg -text
+*.sh eol=lf gitlab-language=shell
+*.haml.* gitlab-language=haml
+foo/bar.* foo
+*.cgi key=value?p1=v1&p2=v2
+/*.png gitlab-language=png
+*.binary binary
+/custom-highlighting/*.gitlab-custom gitlab-language=ruby
+/custom-highlighting/*.gitlab-cgi gitlab-language=erb?parent=json
+
+# This uses a tab instead of spaces to ensure the parser also supports this.
+*.md gitlab-language=markdown
+bla/bla.txt
diff --git a/spec/fixtures/gitlab/git/gitattributes_invalid b/spec/fixtures/gitlab/git/gitattributes_invalid
new file mode 100644
index 00000000000..57e0e8e0d3b
--- /dev/null
+++ b/spec/fixtures/gitlab/git/gitattributes_invalid
Binary files differ
diff --git a/spec/fixtures/gitlab/import_export/labels.tar.gz b/spec/fixtures/gitlab/import_export/labels.tar.gz
new file mode 100644
index 00000000000..8329dcf3b4a
--- /dev/null
+++ b/spec/fixtures/gitlab/import_export/labels.tar.gz
Binary files differ
diff --git a/spec/fixtures/glfm/example_snapshots/examples_index.yml b/spec/fixtures/glfm/example_snapshots/examples_index.yml
deleted file mode 100644
index 08f6f88af9e..00000000000
--- a/spec/fixtures/glfm/example_snapshots/examples_index.yml
+++ /dev/null
@@ -1,2017 +0,0 @@
----
-02_01__preliminaries__tabs__001:
- spec_txt_example_position: 1
- source_specification: commonmark
-02_01__preliminaries__tabs__002:
- spec_txt_example_position: 2
- source_specification: commonmark
-02_01__preliminaries__tabs__003:
- spec_txt_example_position: 3
- source_specification: commonmark
-02_01__preliminaries__tabs__004:
- spec_txt_example_position: 4
- source_specification: commonmark
-02_01__preliminaries__tabs__005:
- spec_txt_example_position: 5
- source_specification: commonmark
-02_01__preliminaries__tabs__006:
- spec_txt_example_position: 6
- source_specification: commonmark
-02_01__preliminaries__tabs__007:
- spec_txt_example_position: 7
- source_specification: commonmark
-02_01__preliminaries__tabs__008:
- spec_txt_example_position: 8
- source_specification: commonmark
-02_01__preliminaries__tabs__009:
- spec_txt_example_position: 9
- source_specification: commonmark
-02_01__preliminaries__tabs__010:
- spec_txt_example_position: 10
- source_specification: commonmark
-02_01__preliminaries__tabs__011:
- spec_txt_example_position: 11
- source_specification: commonmark
-03_01__blocks_and_inlines__precedence__001:
- spec_txt_example_position: 12
- source_specification: commonmark
-04_01__leaf_blocks__thematic_breaks__001:
- spec_txt_example_position: 13
- source_specification: commonmark
-04_01__leaf_blocks__thematic_breaks__002:
- spec_txt_example_position: 14
- source_specification: commonmark
-04_01__leaf_blocks__thematic_breaks__003:
- spec_txt_example_position: 15
- source_specification: commonmark
-04_01__leaf_blocks__thematic_breaks__004:
- spec_txt_example_position: 16
- source_specification: commonmark
-04_01__leaf_blocks__thematic_breaks__005:
- spec_txt_example_position: 17
- source_specification: commonmark
-04_01__leaf_blocks__thematic_breaks__006:
- spec_txt_example_position: 18
- source_specification: commonmark
-04_01__leaf_blocks__thematic_breaks__007:
- spec_txt_example_position: 19
- source_specification: commonmark
-04_01__leaf_blocks__thematic_breaks__008:
- spec_txt_example_position: 20
- source_specification: commonmark
-04_01__leaf_blocks__thematic_breaks__009:
- spec_txt_example_position: 21
- source_specification: commonmark
-04_01__leaf_blocks__thematic_breaks__010:
- spec_txt_example_position: 22
- source_specification: commonmark
-04_01__leaf_blocks__thematic_breaks__011:
- spec_txt_example_position: 23
- source_specification: commonmark
-04_01__leaf_blocks__thematic_breaks__012:
- spec_txt_example_position: 24
- source_specification: commonmark
-04_01__leaf_blocks__thematic_breaks__013:
- spec_txt_example_position: 25
- source_specification: commonmark
-04_01__leaf_blocks__thematic_breaks__014:
- spec_txt_example_position: 26
- source_specification: commonmark
-04_01__leaf_blocks__thematic_breaks__015:
- spec_txt_example_position: 27
- source_specification: commonmark
-04_01__leaf_blocks__thematic_breaks__016:
- spec_txt_example_position: 28
- source_specification: commonmark
-04_01__leaf_blocks__thematic_breaks__017:
- spec_txt_example_position: 29
- source_specification: commonmark
-04_01__leaf_blocks__thematic_breaks__018:
- spec_txt_example_position: 30
- source_specification: commonmark
-04_01__leaf_blocks__thematic_breaks__019:
- spec_txt_example_position: 31
- source_specification: commonmark
-04_02__leaf_blocks__atx_headings__001:
- spec_txt_example_position: 32
- source_specification: commonmark
-04_02__leaf_blocks__atx_headings__002:
- spec_txt_example_position: 33
- source_specification: commonmark
-04_02__leaf_blocks__atx_headings__003:
- spec_txt_example_position: 34
- source_specification: commonmark
-04_02__leaf_blocks__atx_headings__004:
- spec_txt_example_position: 35
- source_specification: commonmark
-04_02__leaf_blocks__atx_headings__005:
- spec_txt_example_position: 36
- source_specification: commonmark
-04_02__leaf_blocks__atx_headings__006:
- spec_txt_example_position: 37
- source_specification: commonmark
-04_02__leaf_blocks__atx_headings__007:
- spec_txt_example_position: 38
- source_specification: commonmark
-04_02__leaf_blocks__atx_headings__008:
- spec_txt_example_position: 39
- source_specification: commonmark
-04_02__leaf_blocks__atx_headings__009:
- spec_txt_example_position: 40
- source_specification: commonmark
-04_02__leaf_blocks__atx_headings__010:
- spec_txt_example_position: 41
- source_specification: commonmark
-04_02__leaf_blocks__atx_headings__011:
- spec_txt_example_position: 42
- source_specification: commonmark
-04_02__leaf_blocks__atx_headings__012:
- spec_txt_example_position: 43
- source_specification: commonmark
-04_02__leaf_blocks__atx_headings__013:
- spec_txt_example_position: 44
- source_specification: commonmark
-04_02__leaf_blocks__atx_headings__014:
- spec_txt_example_position: 45
- source_specification: commonmark
-04_02__leaf_blocks__atx_headings__015:
- spec_txt_example_position: 46
- source_specification: commonmark
-04_02__leaf_blocks__atx_headings__016:
- spec_txt_example_position: 47
- source_specification: commonmark
-04_02__leaf_blocks__atx_headings__017:
- spec_txt_example_position: 48
- source_specification: commonmark
-04_02__leaf_blocks__atx_headings__018:
- spec_txt_example_position: 49
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__001:
- spec_txt_example_position: 50
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__002:
- spec_txt_example_position: 51
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__003:
- spec_txt_example_position: 52
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__004:
- spec_txt_example_position: 53
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__005:
- spec_txt_example_position: 54
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__006:
- spec_txt_example_position: 55
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__007:
- spec_txt_example_position: 56
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__008:
- spec_txt_example_position: 57
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__009:
- spec_txt_example_position: 58
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__010:
- spec_txt_example_position: 59
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__011:
- spec_txt_example_position: 60
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__012:
- spec_txt_example_position: 61
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__013:
- spec_txt_example_position: 62
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__014:
- spec_txt_example_position: 63
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__015:
- spec_txt_example_position: 64
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__016:
- spec_txt_example_position: 65
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__017:
- spec_txt_example_position: 66
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__018:
- spec_txt_example_position: 67
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__019:
- spec_txt_example_position: 68
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__020:
- spec_txt_example_position: 69
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__021:
- spec_txt_example_position: 70
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__022:
- spec_txt_example_position: 71
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__023:
- spec_txt_example_position: 72
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__024:
- spec_txt_example_position: 73
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__025:
- spec_txt_example_position: 74
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__026:
- spec_txt_example_position: 75
- source_specification: commonmark
-04_03__leaf_blocks__setext_headings__027:
- spec_txt_example_position: 76
- source_specification: commonmark
-04_04__leaf_blocks__indented_code_blocks__001:
- spec_txt_example_position: 77
- source_specification: commonmark
-04_04__leaf_blocks__indented_code_blocks__002:
- spec_txt_example_position: 78
- source_specification: commonmark
-04_04__leaf_blocks__indented_code_blocks__003:
- spec_txt_example_position: 79
- source_specification: commonmark
-04_04__leaf_blocks__indented_code_blocks__004:
- spec_txt_example_position: 80
- source_specification: commonmark
-04_04__leaf_blocks__indented_code_blocks__005:
- spec_txt_example_position: 81
- source_specification: commonmark
-04_04__leaf_blocks__indented_code_blocks__006:
- spec_txt_example_position: 82
- source_specification: commonmark
-04_04__leaf_blocks__indented_code_blocks__007:
- spec_txt_example_position: 83
- source_specification: commonmark
-04_04__leaf_blocks__indented_code_blocks__008:
- spec_txt_example_position: 84
- source_specification: commonmark
-04_04__leaf_blocks__indented_code_blocks__009:
- spec_txt_example_position: 85
- source_specification: commonmark
-04_04__leaf_blocks__indented_code_blocks__010:
- spec_txt_example_position: 86
- source_specification: commonmark
-04_04__leaf_blocks__indented_code_blocks__011:
- spec_txt_example_position: 87
- source_specification: commonmark
-04_04__leaf_blocks__indented_code_blocks__012:
- spec_txt_example_position: 88
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__001:
- spec_txt_example_position: 89
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__002:
- spec_txt_example_position: 90
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__003:
- spec_txt_example_position: 91
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__004:
- spec_txt_example_position: 92
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__005:
- spec_txt_example_position: 93
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__006:
- spec_txt_example_position: 94
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__007:
- spec_txt_example_position: 95
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__008:
- spec_txt_example_position: 96
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__009:
- spec_txt_example_position: 97
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__010:
- spec_txt_example_position: 98
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__011:
- spec_txt_example_position: 99
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__012:
- spec_txt_example_position: 100
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__013:
- spec_txt_example_position: 101
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__014:
- spec_txt_example_position: 102
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__015:
- spec_txt_example_position: 103
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__016:
- spec_txt_example_position: 104
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__017:
- spec_txt_example_position: 105
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__018:
- spec_txt_example_position: 106
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__019:
- spec_txt_example_position: 107
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__020:
- spec_txt_example_position: 108
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__021:
- spec_txt_example_position: 109
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__022:
- spec_txt_example_position: 110
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__023:
- spec_txt_example_position: 111
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__024:
- spec_txt_example_position: 112
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__025:
- spec_txt_example_position: 113
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__026:
- spec_txt_example_position: 114
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__027:
- spec_txt_example_position: 115
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__028:
- spec_txt_example_position: 116
- source_specification: commonmark
-04_05__leaf_blocks__fenced_code_blocks__029:
- spec_txt_example_position: 117
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__001:
- spec_txt_example_position: 118
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__002:
- spec_txt_example_position: 119
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__003:
- spec_txt_example_position: 120
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__004:
- spec_txt_example_position: 121
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__005:
- spec_txt_example_position: 122
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__006:
- spec_txt_example_position: 123
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__007:
- spec_txt_example_position: 124
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__008:
- spec_txt_example_position: 125
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__009:
- spec_txt_example_position: 126
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__010:
- spec_txt_example_position: 127
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__011:
- spec_txt_example_position: 128
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__012:
- spec_txt_example_position: 129
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__013:
- spec_txt_example_position: 130
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__014:
- spec_txt_example_position: 131
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__015:
- spec_txt_example_position: 132
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__016:
- spec_txt_example_position: 133
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__017:
- spec_txt_example_position: 134
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__018:
- spec_txt_example_position: 135
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__019:
- spec_txt_example_position: 136
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__020:
- spec_txt_example_position: 137
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__021:
- spec_txt_example_position: 138
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__022:
- spec_txt_example_position: 139
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__023:
- spec_txt_example_position: 140
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__024:
- spec_txt_example_position: 141
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__025:
- spec_txt_example_position: 142
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__026:
- spec_txt_example_position: 143
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__027:
- spec_txt_example_position: 144
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__028:
- spec_txt_example_position: 145
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__029:
- spec_txt_example_position: 146
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__030:
- spec_txt_example_position: 147
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__031:
- spec_txt_example_position: 148
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__032:
- spec_txt_example_position: 149
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__033:
- spec_txt_example_position: 150
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__034:
- spec_txt_example_position: 151
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__035:
- spec_txt_example_position: 152
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__036:
- spec_txt_example_position: 153
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__037:
- spec_txt_example_position: 154
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__038:
- spec_txt_example_position: 155
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__039:
- spec_txt_example_position: 156
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__040:
- spec_txt_example_position: 157
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__041:
- spec_txt_example_position: 158
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__042:
- spec_txt_example_position: 159
- source_specification: commonmark
-04_06__leaf_blocks__html_blocks__043:
- spec_txt_example_position: 160
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__001:
- spec_txt_example_position: 161
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__002:
- spec_txt_example_position: 162
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__003:
- spec_txt_example_position: 163
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__004:
- spec_txt_example_position: 164
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__005:
- spec_txt_example_position: 165
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__006:
- spec_txt_example_position: 166
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__007:
- spec_txt_example_position: 167
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__008:
- spec_txt_example_position: 168
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__009:
- spec_txt_example_position: 169
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__010:
- spec_txt_example_position: 170
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__011:
- spec_txt_example_position: 171
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__012:
- spec_txt_example_position: 172
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__013:
- spec_txt_example_position: 173
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__014:
- spec_txt_example_position: 174
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__015:
- spec_txt_example_position: 175
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__016:
- spec_txt_example_position: 176
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__017:
- spec_txt_example_position: 177
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__018:
- spec_txt_example_position: 178
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__019:
- spec_txt_example_position: 179
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__020:
- spec_txt_example_position: 180
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__021:
- spec_txt_example_position: 181
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__022:
- spec_txt_example_position: 182
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__023:
- spec_txt_example_position: 183
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__024:
- spec_txt_example_position: 184
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__025:
- spec_txt_example_position: 185
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__026:
- spec_txt_example_position: 186
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__027:
- spec_txt_example_position: 187
- source_specification: commonmark
-04_07__leaf_blocks__link_reference_definitions__028:
- spec_txt_example_position: 188
- source_specification: commonmark
-04_08__leaf_blocks__paragraphs__001:
- spec_txt_example_position: 189
- source_specification: commonmark
-04_08__leaf_blocks__paragraphs__002:
- spec_txt_example_position: 190
- source_specification: commonmark
-04_08__leaf_blocks__paragraphs__003:
- spec_txt_example_position: 191
- source_specification: commonmark
-04_08__leaf_blocks__paragraphs__004:
- spec_txt_example_position: 192
- source_specification: commonmark
-04_08__leaf_blocks__paragraphs__005:
- spec_txt_example_position: 193
- source_specification: commonmark
-04_08__leaf_blocks__paragraphs__006:
- spec_txt_example_position: 194
- source_specification: commonmark
-04_08__leaf_blocks__paragraphs__007:
- spec_txt_example_position: 195
- source_specification: commonmark
-04_08__leaf_blocks__paragraphs__008:
- spec_txt_example_position: 196
- source_specification: commonmark
-04_09__leaf_blocks__blank_lines__001:
- spec_txt_example_position: 197
- source_specification: commonmark
-04_10__leaf_blocks__tables_extension__001:
- spec_txt_example_position: 198
- source_specification: github
-04_10__leaf_blocks__tables_extension__002:
- spec_txt_example_position: 199
- source_specification: github
-04_10__leaf_blocks__tables_extension__003:
- spec_txt_example_position: 200
- source_specification: github
-04_10__leaf_blocks__tables_extension__004:
- spec_txt_example_position: 201
- source_specification: github
-04_10__leaf_blocks__tables_extension__005:
- spec_txt_example_position: 202
- source_specification: github
-04_10__leaf_blocks__tables_extension__006:
- spec_txt_example_position: 203
- source_specification: github
-04_10__leaf_blocks__tables_extension__007:
- spec_txt_example_position: 204
- source_specification: github
-04_10__leaf_blocks__tables_extension__008:
- spec_txt_example_position: 205
- source_specification: github
-05_01__container_blocks__block_quotes__001:
- spec_txt_example_position: 206
- source_specification: commonmark
-05_01__container_blocks__block_quotes__002:
- spec_txt_example_position: 207
- source_specification: commonmark
-05_01__container_blocks__block_quotes__003:
- spec_txt_example_position: 208
- source_specification: commonmark
-05_01__container_blocks__block_quotes__004:
- spec_txt_example_position: 209
- source_specification: commonmark
-05_01__container_blocks__block_quotes__005:
- spec_txt_example_position: 210
- source_specification: commonmark
-05_01__container_blocks__block_quotes__006:
- spec_txt_example_position: 211
- source_specification: commonmark
-05_01__container_blocks__block_quotes__007:
- spec_txt_example_position: 212
- source_specification: commonmark
-05_01__container_blocks__block_quotes__008:
- spec_txt_example_position: 213
- source_specification: commonmark
-05_01__container_blocks__block_quotes__009:
- spec_txt_example_position: 214
- source_specification: commonmark
-05_01__container_blocks__block_quotes__010:
- spec_txt_example_position: 215
- source_specification: commonmark
-05_01__container_blocks__block_quotes__011:
- spec_txt_example_position: 216
- source_specification: commonmark
-05_01__container_blocks__block_quotes__012:
- spec_txt_example_position: 217
- source_specification: commonmark
-05_01__container_blocks__block_quotes__013:
- spec_txt_example_position: 218
- source_specification: commonmark
-05_01__container_blocks__block_quotes__014:
- spec_txt_example_position: 219
- source_specification: commonmark
-05_01__container_blocks__block_quotes__015:
- spec_txt_example_position: 220
- source_specification: commonmark
-05_01__container_blocks__block_quotes__016:
- spec_txt_example_position: 221
- source_specification: commonmark
-05_01__container_blocks__block_quotes__017:
- spec_txt_example_position: 222
- source_specification: commonmark
-05_01__container_blocks__block_quotes__018:
- spec_txt_example_position: 223
- source_specification: commonmark
-05_01__container_blocks__block_quotes__019:
- spec_txt_example_position: 224
- source_specification: commonmark
-05_01__container_blocks__block_quotes__020:
- spec_txt_example_position: 225
- source_specification: commonmark
-05_01__container_blocks__block_quotes__021:
- spec_txt_example_position: 226
- source_specification: commonmark
-05_01__container_blocks__block_quotes__022:
- spec_txt_example_position: 227
- source_specification: commonmark
-05_01__container_blocks__block_quotes__023:
- spec_txt_example_position: 228
- source_specification: commonmark
-05_01__container_blocks__block_quotes__024:
- spec_txt_example_position: 229
- source_specification: commonmark
-05_01__container_blocks__block_quotes__025:
- spec_txt_example_position: 230
- source_specification: commonmark
-05_02__container_blocks__list_items__001:
- spec_txt_example_position: 231
- source_specification: commonmark
-05_02__container_blocks__list_items__002:
- spec_txt_example_position: 232
- source_specification: commonmark
-05_02__container_blocks__list_items__003:
- spec_txt_example_position: 233
- source_specification: commonmark
-05_02__container_blocks__list_items__004:
- spec_txt_example_position: 234
- source_specification: commonmark
-05_02__container_blocks__list_items__005:
- spec_txt_example_position: 235
- source_specification: commonmark
-05_02__container_blocks__list_items__006:
- spec_txt_example_position: 236
- source_specification: commonmark
-05_02__container_blocks__list_items__007:
- spec_txt_example_position: 237
- source_specification: commonmark
-05_02__container_blocks__list_items__008:
- spec_txt_example_position: 238
- source_specification: commonmark
-05_02__container_blocks__list_items__009:
- spec_txt_example_position: 239
- source_specification: commonmark
-05_02__container_blocks__list_items__010:
- spec_txt_example_position: 240
- source_specification: commonmark
-05_02__container_blocks__list_items__011:
- spec_txt_example_position: 241
- source_specification: commonmark
-05_02__container_blocks__list_items__012:
- spec_txt_example_position: 242
- source_specification: commonmark
-05_02__container_blocks__list_items__013:
- spec_txt_example_position: 243
- source_specification: commonmark
-05_02__container_blocks__list_items__014:
- spec_txt_example_position: 244
- source_specification: commonmark
-05_02__container_blocks__list_items__015:
- spec_txt_example_position: 245
- source_specification: commonmark
-05_02__container_blocks__list_items__016:
- spec_txt_example_position: 246
- source_specification: commonmark
-05_02__container_blocks__list_items__017:
- spec_txt_example_position: 247
- source_specification: commonmark
-05_02__container_blocks__list_items__018:
- spec_txt_example_position: 248
- source_specification: commonmark
-05_02__container_blocks__list_items__019:
- spec_txt_example_position: 249
- source_specification: commonmark
-05_02__container_blocks__list_items__020:
- spec_txt_example_position: 250
- source_specification: commonmark
-05_02__container_blocks__list_items__021:
- spec_txt_example_position: 251
- source_specification: commonmark
-05_02__container_blocks__list_items__022:
- spec_txt_example_position: 252
- source_specification: commonmark
-05_02__container_blocks__list_items__023:
- spec_txt_example_position: 253
- source_specification: commonmark
-05_02__container_blocks__list_items__024:
- spec_txt_example_position: 254
- source_specification: commonmark
-05_02__container_blocks__list_items__025:
- spec_txt_example_position: 255
- source_specification: commonmark
-05_02__container_blocks__list_items__026:
- spec_txt_example_position: 256
- source_specification: commonmark
-05_02__container_blocks__list_items__027:
- spec_txt_example_position: 257
- source_specification: commonmark
-05_02__container_blocks__list_items__028:
- spec_txt_example_position: 258
- source_specification: commonmark
-05_02__container_blocks__list_items__029:
- spec_txt_example_position: 259
- source_specification: commonmark
-05_02__container_blocks__list_items__030:
- spec_txt_example_position: 260
- source_specification: commonmark
-05_02__container_blocks__list_items__031:
- spec_txt_example_position: 261
- source_specification: commonmark
-05_02__container_blocks__list_items__032:
- spec_txt_example_position: 262
- source_specification: commonmark
-05_02__container_blocks__list_items__033:
- spec_txt_example_position: 263
- source_specification: commonmark
-05_02__container_blocks__list_items__034:
- spec_txt_example_position: 264
- source_specification: commonmark
-05_02__container_blocks__list_items__035:
- spec_txt_example_position: 265
- source_specification: commonmark
-05_02__container_blocks__list_items__036:
- spec_txt_example_position: 266
- source_specification: commonmark
-05_02__container_blocks__list_items__037:
- spec_txt_example_position: 267
- source_specification: commonmark
-05_02__container_blocks__list_items__038:
- spec_txt_example_position: 268
- source_specification: commonmark
-05_02__container_blocks__list_items__039:
- spec_txt_example_position: 269
- source_specification: commonmark
-05_02__container_blocks__list_items__040:
- spec_txt_example_position: 270
- source_specification: commonmark
-05_02__container_blocks__list_items__041:
- spec_txt_example_position: 271
- source_specification: commonmark
-05_02__container_blocks__list_items__042:
- spec_txt_example_position: 272
- source_specification: commonmark
-05_02__container_blocks__list_items__043:
- spec_txt_example_position: 273
- source_specification: commonmark
-05_02__container_blocks__list_items__044:
- spec_txt_example_position: 274
- source_specification: commonmark
-05_02__container_blocks__list_items__045:
- spec_txt_example_position: 275
- source_specification: commonmark
-05_02__container_blocks__list_items__046:
- spec_txt_example_position: 276
- source_specification: commonmark
-05_02__container_blocks__list_items__047:
- spec_txt_example_position: 277
- source_specification: commonmark
-05_02__container_blocks__list_items__048:
- spec_txt_example_position: 278
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__049:
- spec_txt_example_position: 281
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__050:
- spec_txt_example_position: 282
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__051:
- spec_txt_example_position: 283
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__052:
- spec_txt_example_position: 284
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__053:
- spec_txt_example_position: 285
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__054:
- spec_txt_example_position: 286
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__055:
- spec_txt_example_position: 287
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__056:
- spec_txt_example_position: 288
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__057:
- spec_txt_example_position: 289
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__058:
- spec_txt_example_position: 290
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__059:
- spec_txt_example_position: 291
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__060:
- spec_txt_example_position: 292
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__061:
- spec_txt_example_position: 293
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__062:
- spec_txt_example_position: 294
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__063:
- spec_txt_example_position: 295
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__064:
- spec_txt_example_position: 296
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__065:
- spec_txt_example_position: 297
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__066:
- spec_txt_example_position: 298
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__067:
- spec_txt_example_position: 299
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__068:
- spec_txt_example_position: 300
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__069:
- spec_txt_example_position: 301
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__070:
- spec_txt_example_position: 302
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__071:
- spec_txt_example_position: 303
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__072:
- spec_txt_example_position: 304
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__073:
- spec_txt_example_position: 305
- source_specification: commonmark
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__074:
- spec_txt_example_position: 306
- source_specification: commonmark
-06_01__inlines__001:
- spec_txt_example_position: 307
- source_specification: commonmark
-06_02__inlines__backslash_escapes__001:
- spec_txt_example_position: 308
- source_specification: commonmark
-06_02__inlines__backslash_escapes__002:
- spec_txt_example_position: 309
- source_specification: commonmark
-06_02__inlines__backslash_escapes__003:
- spec_txt_example_position: 310
- source_specification: commonmark
-06_02__inlines__backslash_escapes__004:
- spec_txt_example_position: 311
- source_specification: commonmark
-06_02__inlines__backslash_escapes__005:
- spec_txt_example_position: 312
- source_specification: commonmark
-06_02__inlines__backslash_escapes__006:
- spec_txt_example_position: 313
- source_specification: commonmark
-06_02__inlines__backslash_escapes__007:
- spec_txt_example_position: 314
- source_specification: commonmark
-06_02__inlines__backslash_escapes__008:
- spec_txt_example_position: 315
- source_specification: commonmark
-06_02__inlines__backslash_escapes__009:
- spec_txt_example_position: 316
- source_specification: commonmark
-06_02__inlines__backslash_escapes__010:
- spec_txt_example_position: 317
- source_specification: commonmark
-06_02__inlines__backslash_escapes__011:
- spec_txt_example_position: 318
- source_specification: commonmark
-06_02__inlines__backslash_escapes__012:
- spec_txt_example_position: 319
- source_specification: commonmark
-06_02__inlines__backslash_escapes__013:
- spec_txt_example_position: 320
- source_specification: commonmark
-06_03__inlines__entity_and_numeric_character_references__001:
- spec_txt_example_position: 321
- source_specification: commonmark
-06_03__inlines__entity_and_numeric_character_references__002:
- spec_txt_example_position: 322
- source_specification: commonmark
-06_03__inlines__entity_and_numeric_character_references__003:
- spec_txt_example_position: 323
- source_specification: commonmark
-06_03__inlines__entity_and_numeric_character_references__004:
- spec_txt_example_position: 324
- source_specification: commonmark
-06_03__inlines__entity_and_numeric_character_references__005:
- spec_txt_example_position: 325
- source_specification: commonmark
-06_03__inlines__entity_and_numeric_character_references__006:
- spec_txt_example_position: 326
- source_specification: commonmark
-06_03__inlines__entity_and_numeric_character_references__007:
- spec_txt_example_position: 327
- source_specification: commonmark
-06_03__inlines__entity_and_numeric_character_references__008:
- spec_txt_example_position: 328
- source_specification: commonmark
-06_03__inlines__entity_and_numeric_character_references__009:
- spec_txt_example_position: 329
- source_specification: commonmark
-06_03__inlines__entity_and_numeric_character_references__010:
- spec_txt_example_position: 330
- source_specification: commonmark
-06_03__inlines__entity_and_numeric_character_references__011:
- spec_txt_example_position: 331
- source_specification: commonmark
-06_03__inlines__entity_and_numeric_character_references__012:
- spec_txt_example_position: 332
- source_specification: commonmark
-06_03__inlines__entity_and_numeric_character_references__013:
- spec_txt_example_position: 333
- source_specification: commonmark
-06_03__inlines__entity_and_numeric_character_references__014:
- spec_txt_example_position: 334
- source_specification: commonmark
-06_03__inlines__entity_and_numeric_character_references__015:
- spec_txt_example_position: 335
- source_specification: commonmark
-06_03__inlines__entity_and_numeric_character_references__016:
- spec_txt_example_position: 336
- source_specification: commonmark
-06_03__inlines__entity_and_numeric_character_references__017:
- spec_txt_example_position: 337
- source_specification: commonmark
-06_04__inlines__code_spans__001:
- spec_txt_example_position: 338
- source_specification: commonmark
-06_04__inlines__code_spans__002:
- spec_txt_example_position: 339
- source_specification: commonmark
-06_04__inlines__code_spans__003:
- spec_txt_example_position: 340
- source_specification: commonmark
-06_04__inlines__code_spans__004:
- spec_txt_example_position: 341
- source_specification: commonmark
-06_04__inlines__code_spans__005:
- spec_txt_example_position: 342
- source_specification: commonmark
-06_04__inlines__code_spans__006:
- spec_txt_example_position: 343
- source_specification: commonmark
-06_04__inlines__code_spans__007:
- spec_txt_example_position: 344
- source_specification: commonmark
-06_04__inlines__code_spans__008:
- spec_txt_example_position: 345
- source_specification: commonmark
-06_04__inlines__code_spans__009:
- spec_txt_example_position: 346
- source_specification: commonmark
-06_04__inlines__code_spans__010:
- spec_txt_example_position: 347
- source_specification: commonmark
-06_04__inlines__code_spans__011:
- spec_txt_example_position: 348
- source_specification: commonmark
-06_04__inlines__code_spans__012:
- spec_txt_example_position: 349
- source_specification: commonmark
-06_04__inlines__code_spans__013:
- spec_txt_example_position: 350
- source_specification: commonmark
-06_04__inlines__code_spans__014:
- spec_txt_example_position: 351
- source_specification: commonmark
-06_04__inlines__code_spans__015:
- spec_txt_example_position: 352
- source_specification: commonmark
-06_04__inlines__code_spans__016:
- spec_txt_example_position: 353
- source_specification: commonmark
-06_04__inlines__code_spans__017:
- spec_txt_example_position: 354
- source_specification: commonmark
-06_04__inlines__code_spans__018:
- spec_txt_example_position: 355
- source_specification: commonmark
-06_04__inlines__code_spans__019:
- spec_txt_example_position: 356
- source_specification: commonmark
-06_04__inlines__code_spans__020:
- spec_txt_example_position: 357
- source_specification: commonmark
-06_04__inlines__code_spans__021:
- spec_txt_example_position: 358
- source_specification: commonmark
-06_04__inlines__code_spans__022:
- spec_txt_example_position: 359
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__001:
- spec_txt_example_position: 360
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__002:
- spec_txt_example_position: 361
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__003:
- spec_txt_example_position: 362
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__004:
- spec_txt_example_position: 363
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__005:
- spec_txt_example_position: 364
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__006:
- spec_txt_example_position: 365
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__007:
- spec_txt_example_position: 366
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__008:
- spec_txt_example_position: 367
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__009:
- spec_txt_example_position: 368
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__010:
- spec_txt_example_position: 369
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__011:
- spec_txt_example_position: 370
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__012:
- spec_txt_example_position: 371
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__013:
- spec_txt_example_position: 372
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__014:
- spec_txt_example_position: 373
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__015:
- spec_txt_example_position: 374
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__016:
- spec_txt_example_position: 375
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__017:
- spec_txt_example_position: 376
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__018:
- spec_txt_example_position: 377
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__019:
- spec_txt_example_position: 378
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__020:
- spec_txt_example_position: 379
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__021:
- spec_txt_example_position: 380
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__022:
- spec_txt_example_position: 381
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__023:
- spec_txt_example_position: 382
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__024:
- spec_txt_example_position: 383
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__025:
- spec_txt_example_position: 384
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__026:
- spec_txt_example_position: 385
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__027:
- spec_txt_example_position: 386
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__028:
- spec_txt_example_position: 387
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__029:
- spec_txt_example_position: 388
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__030:
- spec_txt_example_position: 389
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__031:
- spec_txt_example_position: 390
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__032:
- spec_txt_example_position: 391
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__033:
- spec_txt_example_position: 392
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__034:
- spec_txt_example_position: 393
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__035:
- spec_txt_example_position: 394
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__036:
- spec_txt_example_position: 395
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__037:
- spec_txt_example_position: 396
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__038:
- spec_txt_example_position: 397
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__039:
- spec_txt_example_position: 398
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__040:
- spec_txt_example_position: 399
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__041:
- spec_txt_example_position: 400
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__042:
- spec_txt_example_position: 401
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__043:
- spec_txt_example_position: 402
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__044:
- spec_txt_example_position: 403
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__045:
- spec_txt_example_position: 404
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__046:
- spec_txt_example_position: 405
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__047:
- spec_txt_example_position: 406
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__048:
- spec_txt_example_position: 407
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__049:
- spec_txt_example_position: 408
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__050:
- spec_txt_example_position: 409
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__051:
- spec_txt_example_position: 410
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__052:
- spec_txt_example_position: 411
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__053:
- spec_txt_example_position: 412
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__054:
- spec_txt_example_position: 413
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__055:
- spec_txt_example_position: 414
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__056:
- spec_txt_example_position: 415
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__057:
- spec_txt_example_position: 416
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__058:
- spec_txt_example_position: 417
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__059:
- spec_txt_example_position: 418
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__060:
- spec_txt_example_position: 419
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__061:
- spec_txt_example_position: 420
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__062:
- spec_txt_example_position: 421
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__063:
- spec_txt_example_position: 422
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__064:
- spec_txt_example_position: 423
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__065:
- spec_txt_example_position: 424
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__066:
- spec_txt_example_position: 425
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__067:
- spec_txt_example_position: 426
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__068:
- spec_txt_example_position: 427
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__069:
- spec_txt_example_position: 428
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__070:
- spec_txt_example_position: 429
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__071:
- spec_txt_example_position: 430
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__072:
- spec_txt_example_position: 431
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__073:
- spec_txt_example_position: 432
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__074:
- spec_txt_example_position: 433
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__075:
- spec_txt_example_position: 434
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__076:
- spec_txt_example_position: 435
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__077:
- spec_txt_example_position: 436
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__078:
- spec_txt_example_position: 437
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__079:
- spec_txt_example_position: 438
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__080:
- spec_txt_example_position: 439
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__081:
- spec_txt_example_position: 440
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__082:
- spec_txt_example_position: 441
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__083:
- spec_txt_example_position: 442
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__084:
- spec_txt_example_position: 443
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__085:
- spec_txt_example_position: 444
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__086:
- spec_txt_example_position: 445
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__087:
- spec_txt_example_position: 446
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__088:
- spec_txt_example_position: 447
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__089:
- spec_txt_example_position: 448
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__090:
- spec_txt_example_position: 449
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__091:
- spec_txt_example_position: 450
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__092:
- spec_txt_example_position: 451
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__093:
- spec_txt_example_position: 452
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__094:
- spec_txt_example_position: 453
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__095:
- spec_txt_example_position: 454
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__096:
- spec_txt_example_position: 455
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__097:
- spec_txt_example_position: 456
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__098:
- spec_txt_example_position: 457
- source_specification: commonmark
-06_05__inlines__emphasis_and_strong_emphasis__099:
- 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__001:
- spec_txt_example_position: 491
- source_specification: github
-06_06__inlines__strikethrough_extension__002:
- spec_txt_example_position: 492
- source_specification: github
-06_07__inlines__links__001:
- spec_txt_example_position: 493
- source_specification: commonmark
-06_07__inlines__links__002:
- spec_txt_example_position: 494
- source_specification: commonmark
-06_07__inlines__links__003:
- spec_txt_example_position: 495
- source_specification: commonmark
-06_07__inlines__links__004:
- spec_txt_example_position: 496
- source_specification: commonmark
-06_07__inlines__links__005:
- spec_txt_example_position: 497
- source_specification: commonmark
-06_07__inlines__links__006:
- spec_txt_example_position: 498
- source_specification: commonmark
-06_07__inlines__links__007:
- spec_txt_example_position: 499
- source_specification: commonmark
-06_07__inlines__links__008:
- spec_txt_example_position: 500
- source_specification: commonmark
-06_07__inlines__links__009:
- spec_txt_example_position: 501
- source_specification: commonmark
-06_07__inlines__links__010:
- spec_txt_example_position: 502
- source_specification: commonmark
-06_07__inlines__links__011:
- spec_txt_example_position: 503
- source_specification: commonmark
-06_07__inlines__links__012:
- spec_txt_example_position: 504
- source_specification: commonmark
-06_07__inlines__links__013:
- spec_txt_example_position: 505
- source_specification: commonmark
-06_07__inlines__links__014:
- spec_txt_example_position: 506
- source_specification: commonmark
-06_07__inlines__links__015:
- spec_txt_example_position: 507
- source_specification: commonmark
-06_07__inlines__links__016:
- spec_txt_example_position: 508
- source_specification: commonmark
-06_07__inlines__links__017:
- spec_txt_example_position: 509
- source_specification: commonmark
-06_07__inlines__links__018:
- spec_txt_example_position: 510
- source_specification: commonmark
-06_07__inlines__links__019:
- spec_txt_example_position: 511
- source_specification: commonmark
-06_07__inlines__links__020:
- spec_txt_example_position: 512
- source_specification: commonmark
-06_07__inlines__links__021:
- spec_txt_example_position: 513
- source_specification: commonmark
-06_07__inlines__links__022:
- spec_txt_example_position: 514
- source_specification: commonmark
-06_07__inlines__links__023:
- spec_txt_example_position: 515
- source_specification: commonmark
-06_07__inlines__links__024:
- spec_txt_example_position: 516
- source_specification: commonmark
-06_07__inlines__links__025:
- spec_txt_example_position: 517
- source_specification: commonmark
-06_07__inlines__links__026:
- spec_txt_example_position: 518
- source_specification: commonmark
-06_07__inlines__links__027:
- spec_txt_example_position: 519
- source_specification: commonmark
-06_07__inlines__links__028:
- spec_txt_example_position: 520
- source_specification: commonmark
-06_07__inlines__links__029:
- spec_txt_example_position: 521
- source_specification: commonmark
-06_07__inlines__links__030:
- spec_txt_example_position: 522
- source_specification: commonmark
-06_07__inlines__links__031:
- spec_txt_example_position: 523
- source_specification: commonmark
-06_07__inlines__links__032:
- spec_txt_example_position: 524
- source_specification: commonmark
-06_07__inlines__links__033:
- spec_txt_example_position: 525
- source_specification: commonmark
-06_07__inlines__links__034:
- spec_txt_example_position: 526
- source_specification: commonmark
-06_07__inlines__links__035:
- spec_txt_example_position: 527
- source_specification: commonmark
-06_07__inlines__links__036:
- spec_txt_example_position: 528
- source_specification: commonmark
-06_07__inlines__links__037:
- spec_txt_example_position: 529
- source_specification: commonmark
-06_07__inlines__links__038:
- spec_txt_example_position: 530
- source_specification: commonmark
-06_07__inlines__links__039:
- spec_txt_example_position: 531
- source_specification: commonmark
-06_07__inlines__links__040:
- spec_txt_example_position: 532
- source_specification: commonmark
-06_07__inlines__links__041:
- spec_txt_example_position: 533
- source_specification: commonmark
-06_07__inlines__links__042:
- spec_txt_example_position: 534
- source_specification: commonmark
-06_07__inlines__links__043:
- spec_txt_example_position: 535
- source_specification: commonmark
-06_07__inlines__links__044:
- spec_txt_example_position: 536
- source_specification: commonmark
-06_07__inlines__links__045:
- spec_txt_example_position: 537
- source_specification: commonmark
-06_07__inlines__links__046:
- spec_txt_example_position: 538
- source_specification: commonmark
-06_07__inlines__links__047:
- spec_txt_example_position: 539
- source_specification: commonmark
-06_07__inlines__links__048:
- spec_txt_example_position: 540
- source_specification: commonmark
-06_07__inlines__links__049:
- spec_txt_example_position: 541
- source_specification: commonmark
-06_07__inlines__links__050:
- spec_txt_example_position: 542
- source_specification: commonmark
-06_07__inlines__links__051:
- spec_txt_example_position: 543
- source_specification: commonmark
-06_07__inlines__links__052:
- spec_txt_example_position: 544
- source_specification: commonmark
-06_07__inlines__links__053:
- spec_txt_example_position: 545
- source_specification: commonmark
-06_07__inlines__links__054:
- spec_txt_example_position: 546
- source_specification: commonmark
-06_07__inlines__links__055:
- spec_txt_example_position: 547
- source_specification: commonmark
-06_07__inlines__links__056:
- spec_txt_example_position: 548
- source_specification: commonmark
-06_07__inlines__links__057:
- spec_txt_example_position: 549
- source_specification: commonmark
-06_07__inlines__links__058:
- spec_txt_example_position: 550
- source_specification: commonmark
-06_07__inlines__links__059:
- spec_txt_example_position: 551
- source_specification: commonmark
-06_07__inlines__links__060:
- spec_txt_example_position: 552
- source_specification: commonmark
-06_07__inlines__links__061:
- spec_txt_example_position: 553
- source_specification: commonmark
-06_07__inlines__links__062:
- spec_txt_example_position: 554
- source_specification: commonmark
-06_07__inlines__links__063:
- spec_txt_example_position: 555
- source_specification: commonmark
-06_07__inlines__links__064:
- spec_txt_example_position: 556
- source_specification: commonmark
-06_07__inlines__links__065:
- spec_txt_example_position: 557
- source_specification: commonmark
-06_07__inlines__links__066:
- spec_txt_example_position: 558
- source_specification: commonmark
-06_07__inlines__links__067:
- spec_txt_example_position: 559
- source_specification: commonmark
-06_07__inlines__links__068:
- spec_txt_example_position: 560
- source_specification: commonmark
-06_07__inlines__links__069:
- spec_txt_example_position: 561
- source_specification: commonmark
-06_07__inlines__links__070:
- spec_txt_example_position: 562
- source_specification: commonmark
-06_07__inlines__links__071:
- spec_txt_example_position: 563
- source_specification: commonmark
-06_07__inlines__links__072:
- spec_txt_example_position: 564
- source_specification: commonmark
-06_07__inlines__links__073:
- spec_txt_example_position: 565
- source_specification: commonmark
-06_07__inlines__links__074:
- spec_txt_example_position: 566
- source_specification: commonmark
-06_07__inlines__links__075:
- spec_txt_example_position: 567
- source_specification: commonmark
-06_07__inlines__links__076:
- spec_txt_example_position: 568
- source_specification: commonmark
-06_07__inlines__links__077:
- spec_txt_example_position: 569
- source_specification: commonmark
-06_07__inlines__links__078:
- spec_txt_example_position: 570
- source_specification: commonmark
-06_07__inlines__links__079:
- spec_txt_example_position: 571
- source_specification: commonmark
-06_07__inlines__links__080:
- spec_txt_example_position: 572
- source_specification: commonmark
-06_07__inlines__links__081:
- spec_txt_example_position: 573
- source_specification: commonmark
-06_07__inlines__links__082:
- spec_txt_example_position: 574
- source_specification: commonmark
-06_07__inlines__links__083:
- spec_txt_example_position: 575
- source_specification: commonmark
-06_07__inlines__links__084:
- spec_txt_example_position: 576
- source_specification: commonmark
-06_07__inlines__links__085:
- spec_txt_example_position: 577
- source_specification: commonmark
-06_07__inlines__links__086:
- spec_txt_example_position: 578
- source_specification: commonmark
-06_07__inlines__links__087:
- spec_txt_example_position: 579
- source_specification: commonmark
-06_08__inlines__images__001:
- spec_txt_example_position: 580
- source_specification: commonmark
-06_08__inlines__images__002:
- spec_txt_example_position: 581
- source_specification: commonmark
-06_08__inlines__images__003:
- spec_txt_example_position: 582
- source_specification: commonmark
-06_08__inlines__images__004:
- spec_txt_example_position: 583
- source_specification: commonmark
-06_08__inlines__images__005:
- spec_txt_example_position: 584
- source_specification: commonmark
-06_08__inlines__images__006:
- spec_txt_example_position: 585
- source_specification: commonmark
-06_08__inlines__images__007:
- spec_txt_example_position: 586
- source_specification: commonmark
-06_08__inlines__images__008:
- spec_txt_example_position: 587
- source_specification: commonmark
-06_08__inlines__images__009:
- spec_txt_example_position: 588
- source_specification: commonmark
-06_08__inlines__images__010:
- spec_txt_example_position: 589
- source_specification: commonmark
-06_08__inlines__images__011:
- spec_txt_example_position: 590
- source_specification: commonmark
-06_08__inlines__images__012:
- spec_txt_example_position: 591
- source_specification: commonmark
-06_08__inlines__images__013:
- spec_txt_example_position: 592
- source_specification: commonmark
-06_08__inlines__images__014:
- spec_txt_example_position: 593
- source_specification: commonmark
-06_08__inlines__images__015:
- spec_txt_example_position: 594
- source_specification: commonmark
-06_08__inlines__images__016:
- spec_txt_example_position: 595
- source_specification: commonmark
-06_08__inlines__images__017:
- spec_txt_example_position: 596
- source_specification: commonmark
-06_08__inlines__images__018:
- spec_txt_example_position: 597
- source_specification: commonmark
-06_08__inlines__images__019:
- spec_txt_example_position: 598
- source_specification: commonmark
-06_08__inlines__images__020:
- spec_txt_example_position: 599
- source_specification: commonmark
-06_08__inlines__images__021:
- spec_txt_example_position: 600
- source_specification: commonmark
-06_08__inlines__images__022:
- spec_txt_example_position: 601
- source_specification: commonmark
-06_09__inlines__autolinks__001:
- spec_txt_example_position: 602
- source_specification: commonmark
-06_09__inlines__autolinks__002:
- spec_txt_example_position: 603
- source_specification: commonmark
-06_09__inlines__autolinks__003:
- spec_txt_example_position: 604
- source_specification: commonmark
-06_09__inlines__autolinks__004:
- spec_txt_example_position: 605
- source_specification: commonmark
-06_09__inlines__autolinks__005:
- spec_txt_example_position: 606
- source_specification: commonmark
-06_09__inlines__autolinks__006:
- spec_txt_example_position: 607
- source_specification: commonmark
-06_09__inlines__autolinks__007:
- spec_txt_example_position: 608
- source_specification: commonmark
-06_09__inlines__autolinks__008:
- spec_txt_example_position: 609
- source_specification: commonmark
-06_09__inlines__autolinks__009:
- spec_txt_example_position: 610
- source_specification: commonmark
-06_09__inlines__autolinks__010:
- spec_txt_example_position: 611
- source_specification: commonmark
-06_09__inlines__autolinks__011:
- spec_txt_example_position: 612
- source_specification: commonmark
-06_09__inlines__autolinks__012:
- spec_txt_example_position: 613
- source_specification: commonmark
-06_09__inlines__autolinks__013:
- spec_txt_example_position: 614
- source_specification: commonmark
-06_09__inlines__autolinks__014:
- spec_txt_example_position: 615
- source_specification: commonmark
-06_09__inlines__autolinks__015:
- spec_txt_example_position: 616
- source_specification: commonmark
-06_09__inlines__autolinks__016:
- spec_txt_example_position: 617
- source_specification: commonmark
-06_09__inlines__autolinks__017:
- spec_txt_example_position: 618
- source_specification: commonmark
-06_09__inlines__autolinks__018:
- spec_txt_example_position: 619
- source_specification: commonmark
-06_09__inlines__autolinks__019:
- spec_txt_example_position: 620
- source_specification: commonmark
-06_10__inlines__autolinks_extension__001:
- spec_txt_example_position: 621
- source_specification: github
-06_10__inlines__autolinks_extension__002:
- spec_txt_example_position: 622
- source_specification: github
-06_10__inlines__autolinks_extension__003:
- spec_txt_example_position: 623
- source_specification: github
-06_10__inlines__autolinks_extension__004:
- spec_txt_example_position: 624
- source_specification: github
-06_10__inlines__autolinks_extension__005:
- spec_txt_example_position: 625
- source_specification: github
-06_10__inlines__autolinks_extension__006:
- spec_txt_example_position: 626
- source_specification: github
-06_10__inlines__autolinks_extension__007:
- spec_txt_example_position: 627
- source_specification: github
-06_10__inlines__autolinks_extension__008:
- spec_txt_example_position: 628
- source_specification: github
-06_10__inlines__autolinks_extension__009:
- spec_txt_example_position: 629
- source_specification: github
-06_10__inlines__autolinks_extension__010:
- spec_txt_example_position: 630
- source_specification: github
-06_10__inlines__autolinks_extension__011:
- spec_txt_example_position: 631
- source_specification: github
-06_11__inlines__raw_html__001:
- spec_txt_example_position: 632
- source_specification: commonmark
-06_11__inlines__raw_html__002:
- spec_txt_example_position: 633
- source_specification: commonmark
-06_11__inlines__raw_html__003:
- spec_txt_example_position: 634
- source_specification: commonmark
-06_11__inlines__raw_html__004:
- spec_txt_example_position: 635
- source_specification: commonmark
-06_11__inlines__raw_html__005:
- spec_txt_example_position: 636
- source_specification: commonmark
-06_11__inlines__raw_html__006:
- spec_txt_example_position: 637
- source_specification: commonmark
-06_11__inlines__raw_html__007:
- spec_txt_example_position: 638
- source_specification: commonmark
-06_11__inlines__raw_html__008:
- spec_txt_example_position: 639
- source_specification: commonmark
-06_11__inlines__raw_html__009:
- spec_txt_example_position: 640
- source_specification: commonmark
-06_11__inlines__raw_html__010:
- spec_txt_example_position: 641
- source_specification: commonmark
-06_11__inlines__raw_html__011:
- spec_txt_example_position: 642
- source_specification: commonmark
-06_11__inlines__raw_html__012:
- spec_txt_example_position: 643
- source_specification: commonmark
-06_11__inlines__raw_html__013:
- spec_txt_example_position: 644
- source_specification: commonmark
-06_11__inlines__raw_html__014:
- spec_txt_example_position: 645
- source_specification: commonmark
-06_11__inlines__raw_html__015:
- spec_txt_example_position: 646
- source_specification: commonmark
-06_11__inlines__raw_html__016:
- spec_txt_example_position: 647
- source_specification: commonmark
-06_11__inlines__raw_html__017:
- spec_txt_example_position: 648
- source_specification: commonmark
-06_11__inlines__raw_html__018:
- spec_txt_example_position: 649
- source_specification: commonmark
-06_11__inlines__raw_html__019:
- spec_txt_example_position: 650
- source_specification: commonmark
-06_11__inlines__raw_html__020:
- spec_txt_example_position: 651
- source_specification: commonmark
-06_11__inlines__raw_html__021:
- spec_txt_example_position: 652
- source_specification: commonmark
-06_12__inlines__disallowed_raw_html_extension__001:
- spec_txt_example_position: 653
- source_specification: github
-06_13__inlines__hard_line_breaks__001:
- spec_txt_example_position: 654
- source_specification: commonmark
-06_13__inlines__hard_line_breaks__002:
- spec_txt_example_position: 655
- source_specification: commonmark
-06_13__inlines__hard_line_breaks__003:
- spec_txt_example_position: 656
- source_specification: commonmark
-06_13__inlines__hard_line_breaks__004:
- spec_txt_example_position: 657
- source_specification: commonmark
-06_13__inlines__hard_line_breaks__005:
- spec_txt_example_position: 658
- source_specification: commonmark
-06_13__inlines__hard_line_breaks__006:
- spec_txt_example_position: 659
- source_specification: commonmark
-06_13__inlines__hard_line_breaks__007:
- spec_txt_example_position: 660
- source_specification: commonmark
-06_13__inlines__hard_line_breaks__008:
- spec_txt_example_position: 661
- source_specification: commonmark
-06_13__inlines__hard_line_breaks__009:
- spec_txt_example_position: 662
- source_specification: commonmark
-06_13__inlines__hard_line_breaks__010:
- spec_txt_example_position: 663
- source_specification: commonmark
-06_13__inlines__hard_line_breaks__011:
- spec_txt_example_position: 664
- source_specification: commonmark
-06_13__inlines__hard_line_breaks__012:
- spec_txt_example_position: 665
- source_specification: commonmark
-06_13__inlines__hard_line_breaks__013:
- spec_txt_example_position: 666
- source_specification: commonmark
-06_13__inlines__hard_line_breaks__014:
- spec_txt_example_position: 667
- source_specification: commonmark
-06_13__inlines__hard_line_breaks__015:
- spec_txt_example_position: 668
- source_specification: commonmark
-06_14__inlines__soft_line_breaks__001:
- spec_txt_example_position: 669
- source_specification: commonmark
-06_14__inlines__soft_line_breaks__002:
- spec_txt_example_position: 670
- source_specification: commonmark
-06_15__inlines__textual_content__001:
- spec_txt_example_position: 671
- source_specification: commonmark
-06_15__inlines__textual_content__002:
- spec_txt_example_position: 672
- source_specification: commonmark
-06_15__inlines__textual_content__003:
- spec_txt_example_position: 673
- source_specification: commonmark
-07_01__gitlab_specific_markdown__footnotes__001:
- spec_txt_example_position: 674
- source_specification: gitlab
diff --git a/spec/fixtures/glfm/example_snapshots/html.yml b/spec/fixtures/glfm/example_snapshots/html.yml
deleted file mode 100644
index b9deadcb4cb..00000000000
--- a/spec/fixtures/glfm/example_snapshots/html.yml
+++ /dev/null
@@ -1,7479 +0,0 @@
----
-02_01__preliminaries__tabs__001:
- canonical: "<pre><code>foo\tbaz\t\tbim\n</code></pre>\n"
- static: "<div class=\"gl-relative markdown-code-block js-markdown-code\">\n<pre
- data-sourcepos=\"1:2-1:13\" class=\"code highlight js-syntax-highlight language-plaintext\"
- lang=\"plaintext\" data-canonical-lang=\"\" v-pre=\"true\"><code><span id=\"LC1\"
- class=\"line\" lang=\"plaintext\">foo\tbaz\t\tbim</span></code></pre>\n<copy-code></copy-code>\n</div>"
- wysiwyg: "<pre class=\"content-editor-code-block undefined code highlight\"><code>foo\tbaz\t\tbim</code></pre>"
-02_01__preliminaries__tabs__002:
- canonical: "<pre><code>foo\tbaz\t\tbim\n</code></pre>\n"
- static: "<div class=\"gl-relative markdown-code-block js-markdown-code\">\n<pre
- data-sourcepos=\"1:4-1:15\" class=\"code highlight js-syntax-highlight language-plaintext\"
- lang=\"plaintext\" data-canonical-lang=\"\" v-pre=\"true\"><code><span id=\"LC1\"
- class=\"line\" lang=\"plaintext\">foo\tbaz\t\tbim</span></code></pre>\n<copy-code></copy-code>\n</div>"
- wysiwyg: "<pre class=\"content-editor-code-block undefined code highlight\"><code>foo\tbaz\t\tbim</code></pre>"
-02_01__preliminaries__tabs__003:
- canonical: "<pre><code>a\ta\nὐ\ta\n</code></pre>\n"
- static: "<div class=\"gl-relative markdown-code-block js-markdown-code\">\n<pre
- data-sourcepos=\"1:5-2:9\" class=\"code highlight js-syntax-highlight language-plaintext\"
- lang=\"plaintext\" data-canonical-lang=\"\" v-pre=\"true\"><code><span id=\"LC1\"
- class=\"line\" lang=\"plaintext\">a\ta</span>\n<span id=\"LC2\" class=\"line\"
- lang=\"plaintext\">ὐ\ta</span></code></pre>\n<copy-code></copy-code>\n</div>"
- wysiwyg: "<pre class=\"content-editor-code-block undefined code highlight\"><code>a\ta\nὐ\ta</code></pre>"
-02_01__preliminaries__tabs__004:
- canonical: |
- <ul>
- <li>
- <p>foo</p>
- <p>bar</p>
- </li>
- </ul>
- static: |-
- <ul data-sourcepos="1:3-3:4" dir="auto">
- <li data-sourcepos="1:3-3:4">
- <p data-sourcepos="1:5-1:7">foo</p>
- <p data-sourcepos="3:2-3:4">bar</p>
- </li>
- </ul>
- wysiwyg: |-
- <ul bullet="*"><li><p>foo</p><p>bar</p></li></ul>
-02_01__preliminaries__tabs__005:
- canonical: |
- <ul>
- <li>
- <p>foo</p>
- <pre><code> bar
- </code></pre>
- </li>
- </ul>
- static: |-
- <ul data-sourcepos="1:1-3:5" dir="auto">
- <li data-sourcepos="1:1-3:5">
- <p data-sourcepos="1:3-1:5">foo</p>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="3:2-3:5" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext"> bar</span></code></pre>
- <copy-code></copy-code>
- </div>
- </li>
- </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__006:
- canonical: |
- <blockquote>
- <pre><code> foo
- </code></pre>
- </blockquote>
- static: |-
- <blockquote data-sourcepos="1:1-1:6" dir="auto">
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:3-1:6" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext"> foo</span></code></pre>
- <copy-code></copy-code>
- </div>
- </blockquote>
- wysiwyg: |-
- <blockquote multiline="false"><pre class="content-editor-code-block undefined code highlight"><code> foo</code></pre></blockquote>
-02_01__preliminaries__tabs__007:
- canonical: |
- <ul>
- <li>
- <pre><code> foo
- </code></pre>
- </li>
- </ul>
- static: |-
- <ul data-sourcepos="1:1-1:6" dir="auto">
- <li data-sourcepos="1:1-1:6">
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:3-1:6" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext"> foo</span></code></pre>
- <copy-code></copy-code>
- </div>
- </li>
- </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__008:
- canonical: |
- <pre><code>foo
- bar
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:5-2:4" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo</span>
- <span id="LC2" class="line" lang="plaintext">bar</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>foo
- bar</code></pre>
-02_01__preliminaries__tabs__009:
- 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">
- <li data-sourcepos="1:2-3:7">foo
- <ul data-sourcepos="2:4-3:7">
- <li data-sourcepos="2:4-3:7">bar
- <ul data-sourcepos="3:3-3:7">
- <li data-sourcepos="3:3-3:7">baz</li>
- </ul>
- </li>
- </ul>
- </li>
- </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__010:
- canonical: |
- <h1>Foo</h1>
- static: |-
- <h1 data-sourcepos="1:1-1:5" dir="auto">
- <a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>Foo</h1>
- wysiwyg: |-
- <h1>Foo</h1>
-02_01__preliminaries__tabs__011:
- canonical: |
- <hr />
- static: |-
- <hr data-sourcepos="1:1-1:6">
- wysiwyg: |-
- <hr>
-03_01__blocks_and_inlines__precedence__001:
- canonical: |
- <ul>
- <li>`one</li>
- <li>two`</li>
- </ul>
- static: |-
- <ul data-sourcepos="1:1-2:6" dir="auto">
- <li data-sourcepos="1:1-1:6">`one</li>
- <li data-sourcepos="2:1-2:6">two`</li>
- </ul>
- wysiwyg: |-
- <ul bullet="*"><li><p>`one</p></li><li><p>two`</p></li></ul>
-04_01__leaf_blocks__thematic_breaks__001:
- canonical: |
- <hr />
- <hr />
- <hr />
- static: |-
- <hr data-sourcepos="1:1-1:3">
- <hr data-sourcepos="2:1-2:3">
- <hr data-sourcepos="3:1-3:3">
- wysiwyg: |-
- <hr>
-04_01__leaf_blocks__thematic_breaks__002:
- canonical: |
- <p>+++</p>
- static: |-
- <p data-sourcepos="1:1-1:3" dir="auto">+++</p>
- wysiwyg: |-
- <p>+++</p>
-04_01__leaf_blocks__thematic_breaks__003:
- canonical: |
- <p>===</p>
- static: |-
- <p data-sourcepos="1:1-1:3" dir="auto">===</p>
- wysiwyg: |-
- <p>===</p>
-04_01__leaf_blocks__thematic_breaks__004:
- canonical: |
- <p>--
- **
- __</p>
- static: |-
- <p data-sourcepos="1:1-3:2" dir="auto">--
- **
- __</p>
- wysiwyg: |-
- <p>--
- **
- __</p>
-04_01__leaf_blocks__thematic_breaks__005:
- canonical: |
- <hr />
- <hr />
- <hr />
- static: |-
- <hr data-sourcepos="1:2-1:4">
- <hr data-sourcepos="2:3-2:5">
- <hr data-sourcepos="3:4-3:6">
- wysiwyg: |-
- <hr>
-04_01__leaf_blocks__thematic_breaks__006:
- canonical: |
- <pre><code>***
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:5-1:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">***</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>***</code></pre>
-04_01__leaf_blocks__thematic_breaks__007:
- canonical: |
- <p>Foo
- ***</p>
- static: |-
- <p data-sourcepos="1:1-2:7" dir="auto">Foo
- ***</p>
- wysiwyg: |-
- <p>Foo
- ***</p>
-04_01__leaf_blocks__thematic_breaks__008:
- canonical: |
- <hr />
- static: |-
- <hr data-sourcepos="1:1-1:37">
- wysiwyg: |-
- <hr>
-04_01__leaf_blocks__thematic_breaks__009:
- canonical: |
- <hr />
- static: |-
- <hr data-sourcepos="1:2-1:6">
- wysiwyg: |-
- <hr>
-04_01__leaf_blocks__thematic_breaks__010:
- canonical: |
- <hr />
- static: |-
- <hr data-sourcepos="1:2-1:19">
- wysiwyg: |-
- <hr>
-04_01__leaf_blocks__thematic_breaks__011:
- canonical: |
- <hr />
- static: |-
- <hr data-sourcepos="1:1-1:21">
- wysiwyg: |-
- <hr>
-04_01__leaf_blocks__thematic_breaks__012:
- canonical: |
- <hr />
- static: |-
- <hr data-sourcepos="1:1-1:11">
- wysiwyg: |-
- <hr>
-04_01__leaf_blocks__thematic_breaks__013:
- canonical: |
- <p>_ _ _ _ a</p>
- <p>a------</p>
- <p>---a---</p>
- static: |-
- <p data-sourcepos="1:1-1:9" dir="auto">_ _ _ _ a</p>
- <p data-sourcepos="3:1-3:7" dir="auto">a------</p>
- <p data-sourcepos="5:1-5:7" dir="auto">---a---</p>
- wysiwyg: |-
- <p>_ _ _ _ a</p>
-04_01__leaf_blocks__thematic_breaks__014:
- 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__015:
- canonical: |
- <ul>
- <li>foo</li>
- </ul>
- <hr />
- <ul>
- <li>bar</li>
- </ul>
- static: |-
- <ul data-sourcepos="1:1-1:5" dir="auto">
- <li data-sourcepos="1:1-1:5">foo</li>
- </ul>
- <hr data-sourcepos="2:1-2:3">
- <ul data-sourcepos="3:1-3:5" dir="auto">
- <li data-sourcepos="3:1-3:5">bar</li>
- </ul>
- wysiwyg: |-
- <ul bullet="*"><li><p>foo</p></li></ul>
-04_01__leaf_blocks__thematic_breaks__016:
- canonical: |
- <p>Foo</p>
- <hr />
- <p>bar</p>
- static: |-
- <p data-sourcepos="1:1-1:3" dir="auto">Foo</p>
- <hr data-sourcepos="2:1-2:3">
- <p data-sourcepos="3:1-3:3" dir="auto">bar</p>
- wysiwyg: |-
- <p>Foo</p>
-04_01__leaf_blocks__thematic_breaks__017:
- canonical: |
- <h2>Foo</h2>
- <p>bar</p>
- static: |-
- <h2 data-sourcepos="1:1-3:3" dir="auto">
- <a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>Foo</h2>
- <p data-sourcepos="3:1-3:3" dir="auto">bar</p>
- wysiwyg: |-
- <h2>Foo</h2>
-04_01__leaf_blocks__thematic_breaks__018:
- canonical: |
- <ul>
- <li>Foo</li>
- </ul>
- <hr />
- <ul>
- <li>Bar</li>
- </ul>
- static: |-
- <ul data-sourcepos="1:1-1:5" dir="auto">
- <li data-sourcepos="1:1-1:5">Foo</li>
- </ul>
- <hr data-sourcepos="2:1-2:5">
- <ul data-sourcepos="3:1-3:5" dir="auto">
- <li data-sourcepos="3:1-3:5">Bar</li>
- </ul>
- wysiwyg: |-
- <ul bullet="*"><li><p>Foo</p></li></ul>
-04_01__leaf_blocks__thematic_breaks__019:
- canonical: |
- <ul>
- <li>Foo</li>
- <li>
- <hr />
- </li>
- </ul>
- static: |-
- <ul data-sourcepos="1:1-2:7" dir="auto">
- <li data-sourcepos="1:1-1:5">Foo</li>
- <li data-sourcepos="2:1-2:7">
- <hr data-sourcepos="2:3-2:7">
- </li>
- </ul>
- wysiwyg: |-
- <ul bullet="*"><li><p>Foo</p></li><li><p></p><hr></li></ul>
-04_02__leaf_blocks__atx_headings__001:
- 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">
- <a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>foo</h1>
- <h2 data-sourcepos="2:1-2:6" dir="auto">
- <a id="user-content-foo-1" class="anchor" href="#foo-1" aria-hidden="true"></a>foo</h2>
- <h3 data-sourcepos="3:1-3:7" dir="auto">
- <a id="user-content-foo-2" class="anchor" href="#foo-2" aria-hidden="true"></a>foo</h3>
- <h4 data-sourcepos="4:1-4:8" dir="auto">
- <a id="user-content-foo-3" class="anchor" href="#foo-3" aria-hidden="true"></a>foo</h4>
- <h5 data-sourcepos="5:1-5:9" dir="auto">
- <a id="user-content-foo-4" class="anchor" href="#foo-4" aria-hidden="true"></a>foo</h5>
- <h6 data-sourcepos="6:1-6:10" dir="auto">
- <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__002:
- 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__003:
- canonical: |
- <p>#5 bolt</p>
- <p>#hashtag</p>
- static: |-
- <p data-sourcepos="1:1-1:7" dir="auto">#5 bolt</p>
- <p data-sourcepos="3:1-3:8" dir="auto">#hashtag</p>
- wysiwyg: |-
- <p>#5 bolt</p>
-04_02__leaf_blocks__atx_headings__004:
- 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__005:
- canonical: |
- <h1>foo <em>bar</em> *baz*</h1>
- static: |-
- <h1 data-sourcepos="1:1-1:19" dir="auto">
- <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__006:
- canonical: |
- <h1>foo</h1>
- static: |-
- <h1 data-sourcepos="1:1-1:22" dir="auto">
- <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__007:
- canonical: |
- <h3>foo</h3>
- <h2>foo</h2>
- <h1>foo</h1>
- static: |-
- <h3 data-sourcepos="1:2-1:8" dir="auto">
- <a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>foo</h3>
- <h2 data-sourcepos="2:3-2:8" dir="auto">
- <a id="user-content-foo-1" class="anchor" href="#foo-1" aria-hidden="true"></a>foo</h2>
- <h1 data-sourcepos="3:4-3:8" dir="auto">
- <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__008:
- canonical: |
- <pre><code># foo
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:5-1:9" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext"># foo</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code># foo</code></pre>
-04_02__leaf_blocks__atx_headings__009:
- canonical: |
- <p>foo
- # bar</p>
- static: |-
- <p data-sourcepos="1:1-2:9" dir="auto">foo
- # bar</p>
- wysiwyg: |-
- <p>foo
- # bar</p>
-04_02__leaf_blocks__atx_headings__010:
- canonical: |
- <h2>foo</h2>
- <h3>bar</h3>
- static: |-
- <h2 data-sourcepos="1:1-1:6" dir="auto">
- <a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>foo</h2>
- <h3 data-sourcepos="2:3-2:11" dir="auto">
- <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__011:
- canonical: |
- <h1>foo</h1>
- <h5>foo</h5>
- static: |-
- <h1 data-sourcepos="1:1-1:5" dir="auto">
- <a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>foo</h1>
- <h5 data-sourcepos="2:1-2:9" dir="auto">
- <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__012:
- canonical: |
- <h3>foo</h3>
- static: |-
- <h3 data-sourcepos="1:1-1:7" dir="auto">
- <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__013:
- canonical: |
- <h3>foo ### b</h3>
- static: |-
- <h3 data-sourcepos="1:1-1:13" dir="auto">
- <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__014:
- canonical: |
- <h1>foo#</h1>
- static: |-
- <h1 data-sourcepos="1:1-1:6" dir="auto">
- <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__015:
- canonical: |
- <h3>foo ###</h3>
- <h2>foo ###</h2>
- <h1>foo #</h1>
- static: |-
- <h3 data-sourcepos="1:1-1:32" dir="auto">
- <a id="user-content-foo-" class="anchor" href="#foo-" aria-hidden="true"></a>foo <span>#</span>##</h3>
- <h2 data-sourcepos="2:1-2:31" dir="auto">
- <a id="user-content-foo--1" class="anchor" href="#foo--1" aria-hidden="true"></a>foo #<span>#</span>#</h2>
- <h1 data-sourcepos="3:1-3:28" dir="auto">
- <a id="user-content-foo--2" class="anchor" href="#foo--2" aria-hidden="true"></a>foo <span>#</span>
- </h1>
- wysiwyg: |-
- <h3>foo ###</h3>
-04_02__leaf_blocks__atx_headings__016:
- canonical: |
- <hr />
- <h2>foo</h2>
- <hr />
- static: |-
- <hr data-sourcepos="1:1-1:4">
- <h2 data-sourcepos="2:1-2:6" dir="auto">
- <a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>foo</h2>
- <hr data-sourcepos="3:1-3:4">
- wysiwyg: |-
- <hr>
-04_02__leaf_blocks__atx_headings__017:
- 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>
- <h1 data-sourcepos="2:1-2:5" dir="auto">
- <a id="user-content-baz" class="anchor" href="#baz" aria-hidden="true"></a>baz</h1>
- <p data-sourcepos="3:1-3:7" dir="auto">Bar foo</p>
- wysiwyg: |-
- <p>Foo bar</p>
-04_02__leaf_blocks__atx_headings__018:
- canonical: |
- <h2></h2>
- <h1></h1>
- <h3></h3>
- static: |-
- <h2 data-sourcepos="1:1-1:3" dir="auto"></h2>
- <h1 data-sourcepos="2:1-2:1" dir="auto"></h1>
- <h3 data-sourcepos="3:1-3:3" dir="auto"></h3>
- wysiwyg: |-
- <h2></h2>
-04_03__leaf_blocks__setext_headings__001:
- canonical: |
- <h1>Foo <em>bar</em></h1>
- <h2>Foo <em>bar</em></h2>
- static: |-
- <h1 data-sourcepos="1:1-3:0" dir="auto">
- <a id="user-content-foo-bar" class="anchor" href="#foo-bar" aria-hidden="true"></a>Foo <em>bar</em>
- </h1>
- <h2 data-sourcepos="4:1-5:9" dir="auto">
- <a id="user-content-foo-bar-1" class="anchor" href="#foo-bar-1" aria-hidden="true"></a>Foo <em>bar</em>
- </h2>
- wysiwyg: |-
- <h1>Foo <em>bar</em></h1>
-04_03__leaf_blocks__setext_headings__002:
- canonical: |
- <h1>Foo <em>bar
- baz</em></h1>
- static: |-
- <h1 data-sourcepos="1:1-3:4" dir="auto">
- <a id="user-content-foo-barbaz" class="anchor" href="#foo-barbaz" aria-hidden="true"></a>Foo <em>bar
- baz</em>
- </h1>
- wysiwyg: |-
- <h1>Foo <em>bar
- baz</em></h1>
-04_03__leaf_blocks__setext_headings__003:
- canonical: |
- <h1>Foo <em>bar
- baz</em></h1>
- static: |-
- <h1 data-sourcepos="1:3-3:4" dir="auto">
- <a id="user-content-foo-barbaz" class="anchor" href="#foo-barbaz" aria-hidden="true"></a>Foo <em>bar
- baz</em>
- </h1>
- wysiwyg: |-
- <h1>Foo <em>bar
- baz</em></h1>
-04_03__leaf_blocks__setext_headings__004:
- canonical: |
- <h2>Foo</h2>
- <h1>Foo</h1>
- static: |-
- <h2 data-sourcepos="1:1-3:0" dir="auto">
- <a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>Foo</h2>
- <h1 data-sourcepos="4:1-5:1" dir="auto">
- <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__005:
- canonical: |
- <h2>Foo</h2>
- <h2>Foo</h2>
- <h1>Foo</h1>
- static: |-
- <h2 data-sourcepos="1:4-3:0" dir="auto">
- <a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>Foo</h2>
- <h2 data-sourcepos="4:3-6:0" dir="auto">
- <a id="user-content-foo-1" class="anchor" href="#foo-1" aria-hidden="true"></a>Foo</h2>
- <h1 data-sourcepos="7:3-8:5" dir="auto">
- <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__006:
- canonical: |
- <pre><code>Foo
- ---
-
- Foo
- </code></pre>
- <hr />
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:5-4:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">Foo</span>
- <span id="LC2" class="line" lang="plaintext">---</span>
- <span id="LC3" class="line" lang="plaintext"></span>
- <span id="LC4" class="line" lang="plaintext">Foo</span></code></pre>
- <copy-code></copy-code>
- </div>
- <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__007:
- canonical: |
- <h2>Foo</h2>
- static: |-
- <h2 data-sourcepos="1:1-2:13" dir="auto">
- <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__008:
- canonical: |
- <p>Foo
- ---</p>
- static: |-
- <p data-sourcepos="1:1-2:7" dir="auto">Foo
- ---</p>
- wysiwyg: |-
- <p>Foo
- ---</p>
-04_03__leaf_blocks__setext_headings__009:
- canonical: |
- <p>Foo
- = =</p>
- <p>Foo</p>
- <hr />
- static: |-
- <p data-sourcepos="1:1-2:3" dir="auto">Foo
- = =</p>
- <p data-sourcepos="4:1-4:3" dir="auto">Foo</p>
- <hr data-sourcepos="5:1-5:5">
- wysiwyg: |-
- <p>Foo
- = =</p>
-04_03__leaf_blocks__setext_headings__010:
- canonical: |
- <h2>Foo</h2>
- static: |-
- <h2 data-sourcepos="1:1-2:5" dir="auto">
- <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__011:
- canonical: |
- <h2>Foo\</h2>
- static: |-
- <h2 data-sourcepos="1:1-2:4" dir="auto">
- <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__012:
- 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">
- <a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>`Foo</h2>
- <p data-sourcepos="3:1-3:1" dir="auto">`</p>
- <h2 data-sourcepos="5:1-7:12" dir="auto">
- <a id="user-content-a-titlea-lot" class="anchor" href="#a-titlea-lot" aria-hidden="true"></a>&lt;a title="a lot</h2>
- <p data-sourcepos="7:1-7:12" dir="auto">of dashes"/&gt;</p>
- wysiwyg: |-
- <h2>`Foo</h2>
-04_03__leaf_blocks__setext_headings__013:
- canonical: |
- <blockquote>
- <p>Foo</p>
- </blockquote>
- <hr />
- static: |-
- <blockquote data-sourcepos="1:1-1:5" dir="auto">
- <p data-sourcepos="1:3-1:5">Foo</p>
- </blockquote>
- <hr data-sourcepos="2:1-2:3">
- wysiwyg: |-
- <blockquote multiline="false"><p>Foo</p></blockquote>
-04_03__leaf_blocks__setext_headings__014:
- canonical: |
- <blockquote>
- <p>foo
- bar
- ===</p>
- </blockquote>
- static: |-
- <blockquote data-sourcepos="1:1-3:3" dir="auto">
- <p data-sourcepos="1:3-3:3">foo
- bar
- ===</p>
- </blockquote>
- wysiwyg: |-
- <blockquote multiline="false"><p>foo
- bar
- ===</p></blockquote>
-04_03__leaf_blocks__setext_headings__015:
- canonical: |
- <ul>
- <li>Foo</li>
- </ul>
- <hr />
- static: |-
- <ul data-sourcepos="1:1-1:5" dir="auto">
- <li data-sourcepos="1:1-1:5">Foo</li>
- </ul>
- <hr data-sourcepos="2:1-2:3">
- wysiwyg: |-
- <ul bullet="*"><li><p>Foo</p></li></ul>
-04_03__leaf_blocks__setext_headings__016:
- canonical: |
- <h2>Foo
- Bar</h2>
- static: |-
- <h2 data-sourcepos="1:1-3:3" dir="auto">
- <a id="user-content-foobar" class="anchor" href="#foobar" aria-hidden="true"></a>Foo
- Bar</h2>
- wysiwyg: |-
- <h2>Foo
- Bar</h2>
-04_03__leaf_blocks__setext_headings__017:
- canonical: |
- <hr />
- <h2>Foo</h2>
- <h2>Bar</h2>
- <p>Baz</p>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <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>
- <copy-code></copy-code>
- </div>
- <h2 data-sourcepos="4:1-6:3" dir="auto">
- <a id="user-content-bar" class="anchor" href="#bar" aria-hidden="true"></a>Bar</h2>
- <p data-sourcepos="6:1-6:3" dir="auto">Baz</p>
- wysiwyg: |-
- <hr>
-04_03__leaf_blocks__setext_headings__018:
- canonical: |
- <p>====</p>
- static: |-
- <p data-sourcepos="2:1-2:4" dir="auto">====</p>
- wysiwyg: |-
- <p>====</p>
-04_03__leaf_blocks__setext_headings__019:
- canonical: |
- <hr />
- <hr />
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <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>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <hr>
-04_03__leaf_blocks__setext_headings__020:
- canonical: |
- <ul>
- <li>foo</li>
- </ul>
- <hr />
- static: |-
- <ul data-sourcepos="1:1-1:5" dir="auto">
- <li data-sourcepos="1:1-1:5">foo</li>
- </ul>
- <hr data-sourcepos="2:1-2:5">
- wysiwyg: |-
- <ul bullet="*"><li><p>foo</p></li></ul>
-04_03__leaf_blocks__setext_headings__021:
- canonical: |
- <pre><code>foo
- </code></pre>
- <hr />
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:5-1:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo</span></code></pre>
- <copy-code></copy-code>
- </div>
- <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__022:
- canonical: |
- <blockquote>
- <p>foo</p>
- </blockquote>
- <hr />
- static: |-
- <blockquote data-sourcepos="1:1-1:5" dir="auto">
- <p data-sourcepos="1:3-1:5">foo</p>
- </blockquote>
- <hr data-sourcepos="2:1-2:5">
- wysiwyg: |-
- <blockquote multiline="false"><p>foo</p></blockquote>
-04_03__leaf_blocks__setext_headings__023:
- canonical: |
- <h2>&gt; foo</h2>
- static: |-
- <h2 data-sourcepos="1:1-2:6" dir="auto">
- <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__024:
- canonical: |
- <p>Foo</p>
- <h2>bar</h2>
- <p>baz</p>
- static: |-
- <p data-sourcepos="1:1-1:3" dir="auto">Foo</p>
- <h2 data-sourcepos="3:1-5:3" dir="auto">
- <a id="user-content-bar" class="anchor" href="#bar" aria-hidden="true"></a>bar</h2>
- <p data-sourcepos="5:1-5:3" dir="auto">baz</p>
- wysiwyg: |-
- <p>Foo</p>
-04_03__leaf_blocks__setext_headings__025:
- canonical: |
- <p>Foo
- bar</p>
- <hr />
- <p>baz</p>
- static: |-
- <p data-sourcepos="1:1-2:3" dir="auto">Foo
- bar</p>
- <hr data-sourcepos="4:1-5:0">
- <p data-sourcepos="6:1-6:3" dir="auto">baz</p>
- wysiwyg: |-
- <p>Foo
- bar</p>
-04_03__leaf_blocks__setext_headings__026:
- canonical: |
- <p>Foo
- bar</p>
- <hr />
- <p>baz</p>
- static: |-
- <p data-sourcepos="1:1-2:3" dir="auto">Foo
- bar</p>
- <hr data-sourcepos="3:1-3:5">
- <p data-sourcepos="4:1-4:3" dir="auto">baz</p>
- wysiwyg: |-
- <p>Foo
- bar</p>
-04_03__leaf_blocks__setext_headings__027:
- canonical: |
- <p>Foo
- bar
- ---
- baz</p>
- static: |-
- <p data-sourcepos="1:1-4:3" dir="auto">Foo
- bar
- ---
- baz</p>
- wysiwyg: |-
- <p>Foo
- bar
- ---
- baz</p>
-04_04__leaf_blocks__indented_code_blocks__001:
- canonical: |
- <pre><code>a simple
- indented code block
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:5-2:25" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">a simple</span>
- <span id="LC2" class="line" lang="plaintext"> indented code block</span></code></pre>
- <copy-code></copy-code>
- </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__002:
- canonical: |
- <ul>
- <li>
- <p>foo</p>
- <p>bar</p>
- </li>
- </ul>
- static: |-
- <ul data-sourcepos="1:3-3:7" dir="auto">
- <li data-sourcepos="1:3-3:7">
- <p data-sourcepos="1:5-1:7">foo</p>
- <p data-sourcepos="3:5-3:7">bar</p>
- </li>
- </ul>
- wysiwyg: |-
- <ul bullet="*"><li><p>foo</p><p>bar</p></li></ul>
-04_04__leaf_blocks__indented_code_blocks__003:
- canonical: |
- <ol>
- <li>
- <p>foo</p>
- <ul>
- <li>bar</li>
- </ul>
- </li>
- </ol>
- static: |-
- <ol data-sourcepos="1:1-3:9" dir="auto">
- <li data-sourcepos="1:1-3:9">
- <p data-sourcepos="1:5-1:7">foo</p>
- <ul data-sourcepos="3:5-3:9">
- <li data-sourcepos="3:5-3:9">bar</li>
- </ul>
- </li>
- </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__004:
- canonical: |
- <pre><code>&lt;a/&gt;
- *hi*
-
- - one
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:5-4:9" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">&lt;a/&gt;</span>
- <span id="LC2" class="line" lang="plaintext">*hi*</span>
- <span id="LC3" class="line" lang="plaintext"></span>
- <span id="LC4" class="line" lang="plaintext">- one</span></code></pre>
- <copy-code></copy-code>
- </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__005:
- canonical: |
- <pre><code>chunk1
-
- chunk2
-
-
-
- chunk3
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:5-7:10" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">chunk1</span>
- <span id="LC2" class="line" lang="plaintext"></span>
- <span id="LC3" class="line" lang="plaintext">chunk2</span>
- <span id="LC4" class="line" lang="plaintext"></span>
- <span id="LC5" class="line" lang="plaintext"></span>
- <span id="LC6" class="line" lang="plaintext"></span>
- <span id="LC7" class="line" lang="plaintext">chunk3</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>chunk1
-
- chunk2
-
-
-
- chunk3</code></pre>
-04_04__leaf_blocks__indented_code_blocks__006:
- canonical: "<pre><code>chunk1\n \n chunk2\n</code></pre>\n"
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:5-3:12" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">chunk1</span>
- <span id="LC2" class="line" lang="plaintext"> </span>
- <span id="LC3" class="line" lang="plaintext"> chunk2</span></code></pre>
- <copy-code></copy-code>
- </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__007:
- canonical: |
- <p>Foo
- bar</p>
- static: |-
- <p data-sourcepos="1:1-2:7" dir="auto">Foo
- bar</p>
- wysiwyg: |-
- <p>Foo
- bar</p>
-04_04__leaf_blocks__indented_code_blocks__008:
- canonical: |
- <pre><code>foo
- </code></pre>
- <p>bar</p>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:5-1:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo</span></code></pre>
- <copy-code></copy-code>
- </div>
- <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__009:
- 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">
- <a id="user-content-heading" class="anchor" href="#heading" aria-hidden="true"></a>Heading</h1>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="2:5-2:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo</span></code></pre>
- <copy-code></copy-code>
- </div>
- <h2 data-sourcepos="3:1-5:7" dir="auto">
- <a id="user-content-heading-1" class="anchor" href="#heading-1" aria-hidden="true"></a>Heading</h2>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="5:5-5:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo</span></code></pre>
- <copy-code></copy-code>
- </div>
- <hr data-sourcepos="6:1-6:4">
- wysiwyg: |-
- <h1>Heading</h1>
-04_04__leaf_blocks__indented_code_blocks__010:
- canonical: |
- <pre><code> foo
- bar
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:5-2:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext"> foo</span>
- <span id="LC2" class="line" lang="plaintext">bar</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code> foo
- bar</code></pre>
-04_04__leaf_blocks__indented_code_blocks__011:
- canonical: |
- <pre><code>foo
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="3:5-5:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>foo</code></pre>
-04_04__leaf_blocks__indented_code_blocks__012:
- canonical: "<pre><code>foo \n</code></pre>\n"
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:5-1:9" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo </span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>foo </code></pre>
-04_05__leaf_blocks__fenced_code_blocks__001:
- canonical: |
- <pre><code>&lt;
- &gt;
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:1-4:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">&lt;</span>
- <span id="LC2" class="line" lang="plaintext"> &gt;</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>&lt;
- &gt;</code></pre>
-04_05__leaf_blocks__fenced_code_blocks__002:
- canonical: |
- <pre><code>&lt;
- &gt;
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:1-4:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">&lt;</span>
- <span id="LC2" class="line" lang="plaintext"> &gt;</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>&lt;
- &gt;</code></pre>
-04_05__leaf_blocks__fenced_code_blocks__003:
- 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__004:
- canonical: |
- <pre><code>aaa
- ~~~
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:1-4:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span>
- <span id="LC2" class="line" lang="plaintext">~~~</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>aaa
- ~~~</code></pre>
-04_05__leaf_blocks__fenced_code_blocks__005:
- canonical: |
- <pre><code>aaa
- ```
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:1-4:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span>
- <span id="LC2" class="line" lang="plaintext">```</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>aaa
- ```</code></pre>
-04_05__leaf_blocks__fenced_code_blocks__006:
- canonical: |
- <pre><code>aaa
- ```
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:1-4:6" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span>
- <span id="LC2" class="line" lang="plaintext">```</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>aaa
- ```</code></pre>
-04_05__leaf_blocks__fenced_code_blocks__007:
- canonical: |
- <pre><code>aaa
- ~~~
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:1-4:4" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span>
- <span id="LC2" class="line" lang="plaintext">~~~</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>aaa
- ~~~</code></pre>
-04_05__leaf_blocks__fenced_code_blocks__008:
- canonical: |
- <pre><code></code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:1-1:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code></code></pre>
-04_05__leaf_blocks__fenced_code_blocks__009:
- canonical: |
- <pre><code>
- ```
- aaa
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:1-4:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext"></span>
- <span id="LC2" class="line" lang="plaintext">```</span>
- <span id="LC3" class="line" lang="plaintext">aaa</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>
- ```
- aaa</code></pre>
-04_05__leaf_blocks__fenced_code_blocks__010:
- canonical: |
- <blockquote>
- <pre><code>aaa
- </code></pre>
- </blockquote>
- <p>bbb</p>
- static: |-
- <blockquote data-sourcepos="1:1-2:5" dir="auto">
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:3-3:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span></code></pre>
- <copy-code></copy-code>
- </div>
- </blockquote>
- <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__011:
- canonical: "<pre><code>\n \n</code></pre>\n"
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:1-4:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext"></span>
- <span id="LC2" class="line" lang="plaintext"> </span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>
- </code></pre>
-04_05__leaf_blocks__fenced_code_blocks__012:
- canonical: |
- <pre><code></code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:1-2:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code></code></pre>
-04_05__leaf_blocks__fenced_code_blocks__013:
- canonical: |
- <pre><code>aaa
- aaa
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:2-4:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span>
- <span id="LC2" class="line" lang="plaintext">aaa</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>aaa
- aaa</code></pre>
-04_05__leaf_blocks__fenced_code_blocks__014:
- canonical: |
- <pre><code>aaa
- aaa
- aaa
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:3-5:5" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span>
- <span id="LC2" class="line" lang="plaintext">aaa</span>
- <span id="LC3" class="line" lang="plaintext">aaa</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>aaa
- aaa
- aaa</code></pre>
-04_05__leaf_blocks__fenced_code_blocks__015:
- canonical: |
- <pre><code>aaa
- aaa
- aaa
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:4-5:6" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span>
- <span id="LC2" class="line" lang="plaintext"> aaa</span>
- <span id="LC3" class="line" lang="plaintext">aaa</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>aaa
- aaa
- aaa</code></pre>
-04_05__leaf_blocks__fenced_code_blocks__016:
- canonical: |
- <pre><code>```
- aaa
- ```
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:5-3:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">```</span>
- <span id="LC2" class="line" lang="plaintext">aaa</span>
- <span id="LC3" class="line" lang="plaintext">```</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>```
- aaa
- ```</code></pre>
-04_05__leaf_blocks__fenced_code_blocks__017:
- canonical: |
- <pre><code>aaa
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:1-3:5" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>aaa</code></pre>
-04_05__leaf_blocks__fenced_code_blocks__018:
- canonical: |
- <pre><code>aaa
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:4-3:5" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>aaa</code></pre>
-04_05__leaf_blocks__fenced_code_blocks__019:
- canonical: |
- <pre><code>aaa
- ```
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:1-3:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span>
- <span id="LC2" class="line" lang="plaintext"> ```</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>aaa
- ```</code></pre>
-04_05__leaf_blocks__fenced_code_blocks__020:
- canonical: |
- <p><code> </code>
- aaa</p>
- static: |-
- <p data-sourcepos="1:1-2:3" dir="auto"><code> </code>
- aaa</p>
- wysiwyg: |-
- <p><code>
- aaa</code></p>
-04_05__leaf_blocks__fenced_code_blocks__021:
- canonical: |
- <pre><code>aaa
- ~~~ ~~
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:1-3:6" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span>
- <span id="LC2" class="line" lang="plaintext">~~~ ~~</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>aaa
- ~~~ ~~</code></pre>
-04_05__leaf_blocks__fenced_code_blocks__022:
- canonical: |
- <p>foo</p>
- <pre><code>bar
- </code></pre>
- <p>baz</p>
- static: |-
- <p data-sourcepos="1:1-1:3" dir="auto">foo</p>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="2:1-4:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">bar</span></code></pre>
- <copy-code></copy-code>
- </div>
- <p data-sourcepos="5:1-5:3" dir="auto">baz</p>
- wysiwyg: |-
- <p>foo</p>
-04_05__leaf_blocks__fenced_code_blocks__023:
- canonical: |
- <h2>foo</h2>
- <pre><code>bar
- </code></pre>
- <h1>baz</h1>
- static: |-
- <h2 data-sourcepos="1:1-3:3" dir="auto">
- <a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>foo</h2>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="3:1-5:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">bar</span></code></pre>
- <copy-code></copy-code>
- </div>
- <h1 data-sourcepos="6:1-6:5" dir="auto">
- <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__024:
- 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">
- <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>
- <span id="LC2" class="line" lang="ruby"> <span class="k">return</span> <span class="mi">3</span></span>
- <span id="LC3" class="line" lang="ruby"><span class="k">end</span></span></code></pre>
- <copy-code></copy-code>
- </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__025:
- 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">
- <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>
- <span id="LC2" class="line" lang="ruby"> <span class="k">return</span> <span class="mi">3</span></span>
- <span id="LC3" class="line" lang="ruby"><span class="k">end</span></span></code></pre>
- <copy-code></copy-code>
- </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__026:
- canonical: |
- <pre><code class="language-;"></code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:1-2:4" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang=";" v-pre="true"><code></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre language=";" class="content-editor-code-block undefined code highlight"><code></code></pre>
-04_05__leaf_blocks__fenced_code_blocks__027:
- canonical: |
- <p><code>aa</code>
- foo</p>
- static: |-
- <p data-sourcepos="1:1-2:3" dir="auto"><code>aa</code>
- foo</p>
- wysiwyg: |-
- <p><code>aa</code>
- foo</p>
-04_05__leaf_blocks__fenced_code_blocks__028:
- canonical: |
- <pre><code class="language-aa">foo
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:1-3:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="aa" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre language="aa" class="content-editor-code-block undefined code highlight"><code>foo</code></pre>
-04_05__leaf_blocks__fenced_code_blocks__029:
- canonical: |
- <pre><code>``` aaa
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:1-3:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">``` aaa</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>``` aaa</code></pre>
-04_06__leaf_blocks__html_blocks__001:
- canonical: |
- <table><tr><td>
- <pre>
- **Hello**,
- <p><em>world</em>.
- </pre></p>
- </td></tr></table>
- static: |-
- <table dir="auto"><tr><td>
- <pre>
- **Hello**,
- <p data-sourcepos="5:1-6:6"><em>world</em>.
- </p></pre>
- </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__002:
- canonical: |
- <table>
- <tr>
- <td>
- hi
- </td>
- </tr>
- </table>
- <p>okay.</p>
- static: |-
- <table dir="auto">
- <tr>
- <td>
- hi
- </td>
- </tr>
- </table>
- <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__003:
- canonical: |2
- <div>
- *hello*
- <foo><a>
- static: |2-
- <div>
- *hello*
- <a></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__004:
- canonical: |
- </div>
- *foo*
- static: |2-
-
- *foo*
- wysiwyg: |-
- <p>
- *foo*</p>
-04_06__leaf_blocks__html_blocks__005:
- canonical: |
- <DIV CLASS="foo">
- <p><em>Markdown</em></p>
- </DIV>
- static: |-
- <div>
- <p data-sourcepos="3:1-3:10"><em>Markdown</em></p>
- </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__006:
- canonical: |
- <div id="foo"
- class="bar">
- </div>
- static: |-
- <div>
- </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__007:
- canonical: |
- <div id="foo" class="bar
- baz">
- </div>
- static: |-
- <div>
- </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__008:
- canonical: |
- <div>
- *foo*
- <p><em>bar</em></p>
- static: |-
- <div>
- *foo*
- <p data-sourcepos="4:1-4:5"><em>bar</em></p>
- </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__009:
- canonical: |
- <div id="foo"
- *hi*
- static: |-
- <div></div>
- wysiwyg: |-
- <p></p>
-04_06__leaf_blocks__html_blocks__010:
- canonical: |
- <div class
- foo
- static: |-
- <div></div>
- wysiwyg: |-
- <p></p>
-04_06__leaf_blocks__html_blocks__011:
- canonical: |
- <div *???-&&&-<---
- *foo*
- static: |-
- <div></div>
- wysiwyg: |-
- <p></p>
-04_06__leaf_blocks__html_blocks__012:
- 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__013:
- canonical: |
- <table><tr><td>
- foo
- </td></tr></table>
- static: |-
- <table dir="auto"><tr><td>
- foo
- </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__014:
- canonical: |
- <div></div>
- ``` c
- int x = 33;
- ```
- static: |-
- <div></div>
- ``` c
- int x = 33;
- ```
- wysiwyg: |-
- Error - check implementation:
- Hast node of type "div" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__015:
- canonical: |
- <a href="foo">
- *bar*
- </a>
- static: |-
- <a href="foo">
- *bar*
- </a>
- wysiwyg: |-
- <p><a target="_blank" rel="noopener noreferrer nofollow" href="foo">
- *bar*
- </a></p>
-04_06__leaf_blocks__html_blocks__016:
- canonical: |
- <Warning>
- *bar*
- </Warning>
- static: |2
-
- *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__017:
- canonical: |
- <i class="foo">
- *bar*
- </i>
- static: |-
- <i>
- *bar*
- </i>
- wysiwyg: |-
- <p><em>
- *bar*
- </em></p>
-04_06__leaf_blocks__html_blocks__018:
- canonical: |
- </ins>
- *bar*
- static: |2-
-
- *bar*
- wysiwyg: |-
- <p>
- *bar*</p>
-04_06__leaf_blocks__html_blocks__019:
- canonical: |
- <del>
- *foo*
- </del>
- static: |-
- <del>
- *foo*
- </del>
- wysiwyg: |-
- <p><s>
- *foo*
- </s></p>
-04_06__leaf_blocks__html_blocks__020:
- canonical: |
- <del>
- <p><em>foo</em></p>
- </del>
- static: |-
- <del>
- <p data-sourcepos="3:1-3:5"><em>foo</em></p>
- </del>
- wysiwyg: |-
- Error - check implementation:
- Cannot destructure property 'type' of 'this.stack.pop(...)' as it is undefined.
-04_06__leaf_blocks__html_blocks__021:
- 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: |-
- <p><em><s>foo</s></em></p>
-04_06__leaf_blocks__html_blocks__022:
- 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">
- <pre class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext"></span>
- <span id="LC2" class="line" lang="plaintext">import Text.HTML.TagSoup</span>
- <span id="LC3" class="line" lang="plaintext"></span>
- <span id="LC4" class="line" lang="plaintext">main :: IO ()</span>
- <span id="LC5" class="line" lang="plaintext">main = print $ parseTags tags</span></code></pre>
- <copy-code></copy-code>
- </div>
- <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__023:
- canonical: |
- <script type="text/javascript">
- // JavaScript example
-
- document.getElementById("demo").innerHTML = "Hello JavaScript!";
- </script>
- <p>okay</p>
- static: |2-
-
- <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__024:
- canonical: |
- <style
- type="text/css">
- h1 {color:red;}
-
- p {color:blue;}
- </style>
- <p>okay</p>
- static: |2-
-
- h1 {color:red;}
-
- p {color:blue;}
-
- <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__025:
- canonical: |
- <style
- type="text/css">
-
- foo
- static: |2-
-
-
- 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__026:
- canonical: |
- <blockquote>
- <div>
- foo
- </blockquote>
- <p>bar</p>
- static: |-
- <blockquote data-sourcepos="1:1-2:5" dir="auto">
- <div>
- foo
-
- <p data-sourcepos="4:1-4:3">bar</p>
- </div>
- </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__027:
- canonical: |
- <ul>
- <li>
- <div>
- </li>
- <li>foo</li>
- </ul>
- static: |-
- <ul data-sourcepos="1:1-2:5" dir="auto">
- <li data-sourcepos="1:1-1:7">
- <div>
-
- <li data-sourcepos="2:1-2:5">foo</li>
- </div>
- </li>
- </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__028:
- canonical: |
- <style>p{color:red;}</style>
- <p><em>foo</em></p>
- static: |-
- p{color:red;}
- <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__029:
- canonical: |
- <!-- foo -->*bar*
- <p><em>baz</em></p>
- static: |-
- *bar*
- <p data-sourcepos="2:1-2:5" dir="auto"><em>baz</em></p>
- wysiwyg: |-
- Error - check implementation:
- Cannot destructure property 'className' of 'hastNode.properties' as it is undefined.
-04_06__leaf_blocks__html_blocks__030:
- 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__031:
- canonical: |
- <!-- Foo
-
- bar
- baz -->
- <p>okay</p>
- static: |2-
-
- <p data-sourcepos="5:1-5:4" dir="auto">okay</p>
- wysiwyg: |-
- Error - check implementation:
- Cannot destructure property 'className' of 'hastNode.properties' as it is undefined.
-04_06__leaf_blocks__html_blocks__032:
- canonical: |
- <?php
-
- echo '>';
-
- ?>
- <p>okay</p>
- static: |-
- <?php echo '>';
-
- ?&gt;
- <p data-sourcepos="6:1-6:4" dir="auto">okay</p>
- wysiwyg: |-
- Error - check implementation:
- Cannot destructure property 'className' of 'hastNode.properties' as it is undefined.
-04_06__leaf_blocks__html_blocks__033:
- canonical: |
- <!DOCTYPE html>
- static: ""
- wysiwyg: |-
- <p></p>
-04_06__leaf_blocks__html_blocks__034:
- canonical: |
- <![CDATA[
- function matchwo(a,b)
- {
- if (a < b && a < 0) then {
- return 1;
-
- } else {
-
- return 0;
- }
- }
- ]]>
- <p>okay</p>
- static: |2-
- &lt;![CDATA[
- function matchwo(a,b)
- {
- if (a &lt; b &amp;&amp; a &lt; 0) then {
- return 1;
-
- } else {
-
- return 0;
- }
- }
- ]]&gt;
- <p data-sourcepos="13:1-13:4" dir="auto">okay</p>
- wysiwyg: |-
- Error - check implementation:
- Cannot destructure property 'className' of 'hastNode.properties' as it is undefined.
-04_06__leaf_blocks__html_blocks__035:
- canonical: |2
- <!-- foo -->
- <pre><code>&lt;!-- foo --&gt;
- </code></pre>
- static: " \n<div class=\"gl-relative markdown-code-block js-markdown-code\">\n<pre
- data-sourcepos=\"3:5-3:16\" class=\"code highlight js-syntax-highlight language-plaintext\"
- lang=\"plaintext\" data-canonical-lang=\"\" v-pre=\"true\"><code><span id=\"LC1\"
- class=\"line\" lang=\"plaintext\">&lt;!-- foo --&gt;</span></code></pre>\n<copy-code></copy-code>\n</div>"
- wysiwyg: |-
- Error - check implementation:
- Cannot destructure property 'className' of 'hastNode.properties' as it is undefined.
-04_06__leaf_blocks__html_blocks__036:
- canonical: |2
- <div>
- <pre><code>&lt;div&gt;
- </code></pre>
- static: |2-
- <div>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="3:5-3:9" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">&lt;div&gt;</span></code></pre>
- <copy-code></copy-code>
- </div>
- </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__037:
- canonical: |
- <p>Foo</p>
- <div>
- bar
- </div>
- static: |-
- <p data-sourcepos="1:1-1:3" dir="auto">Foo</p>
- <div>
- bar
- </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__038:
- canonical: |
- <div>
- bar
- </div>
- *foo*
- static: |-
- <div>
- bar
- </div>
- *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__039:
- canonical: |
- <p>Foo
- <a href="bar">
- baz</p>
- static: |-
- <p data-sourcepos="1:1-3:3" dir="auto">Foo
- <a href="bar">
- baz</a></p>
- wysiwyg: |-
- <p>Foo
- <a target="_blank" rel="noopener noreferrer nofollow" href="bar">
- baz</a></p>
-04_06__leaf_blocks__html_blocks__040:
- canonical: |
- <div>
- <p><em>Emphasized</em> text.</p>
- </div>
- static: |-
- <div>
- <p data-sourcepos="3:1-3:18"><em>Emphasized</em> text.</p>
- </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__041:
- canonical: |
- <div>
- *Emphasized* text.
- </div>
- static: |-
- <div>
- *Emphasized* text.
- </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__042:
- canonical: |
- <table>
- <tr>
- <td>
- Hi
- </td>
- </tr>
- </table>
- static: |-
- <table dir="auto">
- <tr>
- <td>
- Hi
- </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__043:
- canonical: |
- <table>
- <tr>
- <pre><code>&lt;td&gt;
- Hi
- &lt;/td&gt;
- </code></pre>
- </tr>
- </table>
- static: |-
- <table dir="auto">
- <tr>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="5:5-8:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">&lt;td&gt;</span>
- <span id="LC2" class="line" lang="plaintext"> Hi</span>
- <span id="LC3" class="line" lang="plaintext">&lt;/td&gt;</span></code></pre>
- <copy-code></copy-code>
- </div>
- </tr>
- </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__001:
- 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__002:
- 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__003:
- 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__004:
- 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__005:
- 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="
- title
- line1
- line2
- ">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__006:
- 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>
- <p data-sourcepos="3:1-3:16" dir="auto">with blank line'</p>
- <p data-sourcepos="5:1-5:5" dir="auto">[foo]</p>
- wysiwyg: |-
- <p>[foo]: /url 'title</p>
-04_07__leaf_blocks__link_reference_definitions__007:
- 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__008:
- canonical: |
- <p>[foo]:</p>
- <p>[foo]</p>
- static: |-
- <p data-sourcepos="1:1-1:6" dir="auto">[foo]:</p>
- <p data-sourcepos="3:1-3:5" dir="auto">[foo]</p>
- wysiwyg: |-
- <p>[foo]:</p>
-04_07__leaf_blocks__link_reference_definitions__009:
- 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__010:
- canonical: |
- <p>[foo]: <bar>(baz)</p>
- <p>[foo]</p>
- static: |-
- <p data-sourcepos="1:1-1:17" dir="auto">[foo]: (baz)</p>
- <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__011:
- 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__012:
- 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__013:
- 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__014:
- 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__015:
- 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__016:
- canonical: ""
- static: ""
- wysiwyg: |-
- <p></p>
-04_07__leaf_blocks__link_reference_definitions__017:
- 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__018:
- 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__019:
- 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__020:
- canonical: |
- <pre><code>[foo]: /url &quot;title&quot;
- </code></pre>
- <p>[foo]</p>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:5-2:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">[foo]: /url "title"</span></code></pre>
- <copy-code></copy-code>
- </div>
- <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__021:
- canonical: |
- <pre><code>[foo]: /url
- </code></pre>
- <p>[foo]</p>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:1-3:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">[foo]: /url</span></code></pre>
- <copy-code></copy-code>
- </div>
- <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__022:
- canonical: |
- <p>Foo
- [bar]: /baz</p>
- <p>[bar]</p>
- static: |-
- <p data-sourcepos="1:1-2:11" dir="auto">Foo
- [bar]: /baz</p>
- <p data-sourcepos="4:1-4:5" dir="auto">[bar]</p>
- wysiwyg: |-
- <p>Foo
- [bar]: /baz</p>
-04_07__leaf_blocks__link_reference_definitions__023:
- canonical: |
- <h1><a href="/url">Foo</a></h1>
- <blockquote>
- <p>bar</p>
- </blockquote>
- static: |-
- <h1 data-sourcepos="1:1-1:7" dir="auto">
- <a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a><a href="/url">Foo</a>
- </h1>
- <blockquote data-sourcepos="3:1-3:5" dir="auto">
- <p data-sourcepos="3:3-3:5">bar</p>
- </blockquote>
- wysiwyg: |-
- <h1><a target="_blank" rel="noopener noreferrer nofollow" href="/url">Foo</a></h1>
-04_07__leaf_blocks__link_reference_definitions__024:
- canonical: |
- <h1>bar</h1>
- <p><a href="/url">foo</a></p>
- static: |-
- <h1 data-sourcepos="1:1-4:5" dir="auto">
- <a id="user-content-bar" class="anchor" href="#bar" aria-hidden="true"></a>bar</h1>
- <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__025:
- canonical: |
- <p>===
- <a href="/url">foo</a></p>
- static: |-
- <p data-sourcepos="1: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__026:
- 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>,
- <a href="/bar-url" title="bar">bar</a>,
- <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__027:
- 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>
- <blockquote data-sourcepos="3:1-3:13" dir="auto">
- </blockquote>
- wysiwyg: |-
- <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url">foo</a></p>
-04_07__leaf_blocks__link_reference_definitions__028:
- canonical: ""
- static: ""
- wysiwyg: |-
- <p></p>
-04_08__leaf_blocks__paragraphs__001:
- canonical: |
- <p>aaa</p>
- <p>bbb</p>
- static: |-
- <p data-sourcepos="1:1-1:3" dir="auto">aaa</p>
- <p data-sourcepos="3:1-3:3" dir="auto">bbb</p>
- wysiwyg: |-
- <p>aaa</p>
-04_08__leaf_blocks__paragraphs__002:
- canonical: |
- <p>aaa
- bbb</p>
- <p>ccc
- ddd</p>
- static: |-
- <p data-sourcepos="1:1-2:3" dir="auto">aaa
- bbb</p>
- <p data-sourcepos="4:1-5:3" dir="auto">ccc
- ddd</p>
- wysiwyg: |-
- <p>aaa
- bbb</p>
-04_08__leaf_blocks__paragraphs__003:
- canonical: |
- <p>aaa</p>
- <p>bbb</p>
- static: |-
- <p data-sourcepos="1:1-1:3" dir="auto">aaa</p>
- <p data-sourcepos="4:1-4:3" dir="auto">bbb</p>
- wysiwyg: |-
- <p>aaa</p>
-04_08__leaf_blocks__paragraphs__004:
- canonical: |
- <p>aaa
- bbb</p>
- static: |-
- <p data-sourcepos="1:3-2:4" dir="auto">aaa
- bbb</p>
- wysiwyg: |-
- <p>aaa
- bbb</p>
-04_08__leaf_blocks__paragraphs__005:
- canonical: |
- <p>aaa
- bbb
- ccc</p>
- static: |-
- <p data-sourcepos="1:1-3:42" dir="auto">aaa
- bbb
- ccc</p>
- wysiwyg: |-
- <p>aaa
- bbb
- ccc</p>
-04_08__leaf_blocks__paragraphs__006:
- canonical: |
- <p>aaa
- bbb</p>
- static: |-
- <p data-sourcepos="1:4-2:3" dir="auto">aaa
- bbb</p>
- wysiwyg: |-
- <p>aaa
- bbb</p>
-04_08__leaf_blocks__paragraphs__007:
- canonical: |
- <pre><code>aaa
- </code></pre>
- <p>bbb</p>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:5-1:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">aaa</span></code></pre>
- <copy-code></copy-code>
- </div>
- <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__008:
- canonical: |
- <p>aaa<br />
- bbb</p>
- static: |-
- <p data-sourcepos="1:1-2:8" dir="auto">aaa<br>
- bbb</p>
- wysiwyg: |-
- <p>aaa<br>
- bbb</p>
-04_09__leaf_blocks__blank_lines__001:
- canonical: |
- <p>aaa</p>
- <h1>aaa</h1>
- static: |-
- <p data-sourcepos="3:1-3:3" dir="auto">aaa</p>
- <h1 data-sourcepos="6:1-6:5" dir="auto">
- <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__001:
- 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">
- <thead>
- <tr data-sourcepos="1:1-1:13">
- <th data-sourcepos="1:2-1:6">foo</th>
- <th data-sourcepos="1:8-1:12">bar</th>
- </tr>
- </thead>
- <tbody>
- <tr data-sourcepos="3:1-3:13">
- <td data-sourcepos="3:2-3:6">baz</td>
- <td data-sourcepos="3:8-3:12">bim</td>
- </tr>
- </tbody>
- </table>
- wysiwyg: |-
- Error - check implementation:
- Hast node of type "table" not supported by this converter. Please, provide an specification.
-04_10__leaf_blocks__tables_extension__002:
- 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">
- <thead>
- <tr data-sourcepos="1:1-1:16">
- <th align="center" data-sourcepos="1:2-1:6">abc</th>
- <th align="right" data-sourcepos="1:8-1:15">defghi</th>
- </tr>
- </thead>
- <tbody>
- <tr data-sourcepos="3:1-3:9">
- <td align="center" data-sourcepos="3:1-3:4">bar</td>
- <td align="right" data-sourcepos="3:6-3:9">baz</td>
- </tr>
- </tbody>
- </table>
- wysiwyg: |-
- Error - check implementation:
- Hast node of type "table" not supported by this converter. Please, provide an specification.
-04_10__leaf_blocks__tables_extension__003:
- 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">
- <thead>
- <tr data-sourcepos="1:1-1:10">
- <th data-sourcepos="1:2-1:9">f|oo</th>
- </tr>
- </thead>
- <tbody>
- <tr data-sourcepos="3:1-3:13">
- <td data-sourcepos="3:2-3:12">b <code>|</code> az</td>
- </tr>
- <tr data-sourcepos="4:1-4:15">
- <td data-sourcepos="4:2-4:14">b <strong>|</strong> im</td>
- </tr>
- </tbody>
- </table>
- wysiwyg: |-
- Error - check implementation:
- Hast node of type "table" not supported by this converter. Please, provide an specification.
-04_10__leaf_blocks__tables_extension__004:
- 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">
- <thead>
- <tr data-sourcepos="1:1-1:13">
- <th data-sourcepos="1:2-1:6">abc</th>
- <th data-sourcepos="1:8-1:12">def</th>
- </tr>
- </thead>
- <tbody>
- <tr data-sourcepos="3:1-3:13">
- <td data-sourcepos="3:2-3:6">bar</td>
- <td data-sourcepos="3:8-3:12">baz</td>
- </tr>
- </tbody>
- </table>
- <blockquote data-sourcepos="4:1-4:5" dir="auto">
- <p data-sourcepos="4:3-4:5">bar</p>
- </blockquote>
- wysiwyg: |-
- Error - check implementation:
- Hast node of type "table" not supported by this converter. Please, provide an specification.
-04_10__leaf_blocks__tables_extension__005:
- 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">
- <thead>
- <tr data-sourcepos="1:1-1:13">
- <th data-sourcepos="1:2-1:6">abc</th>
- <th data-sourcepos="1:8-1:12">def</th>
- </tr>
- </thead>
- <tbody>
- <tr data-sourcepos="3:1-3:13">
- <td data-sourcepos="3:2-3:6">bar</td>
- <td data-sourcepos="3:8-3:12">baz</td>
- </tr>
- <tr data-sourcepos="4:1-4:3">
- <td data-sourcepos="4:1-4:3">bar</td>
- <td data-sourcepos="4:0-4:0"></td>
- </tr>
- </tbody>
- </table>
- <p data-sourcepos="6:1-6:3" dir="auto">bar</p>
- wysiwyg: |-
- Error - check implementation:
- Hast node of type "table" not supported by this converter. Please, provide an specification.
-04_10__leaf_blocks__tables_extension__006:
- canonical: |
- <p>| abc | def |
- | --- |
- | bar |</p>
- static: |-
- <p data-sourcepos="1:1-3:7" dir="auto">| abc | def |
- | --- |
- | bar |</p>
- wysiwyg: |-
- <p>| abc | def |
- | --- |
- | bar |</p>
-04_10__leaf_blocks__tables_extension__007:
- 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">
- <thead>
- <tr data-sourcepos="1:1-1:13">
- <th data-sourcepos="1:2-1:6">abc</th>
- <th data-sourcepos="1:8-1:12">def</th>
- </tr>
- </thead>
- <tbody>
- <tr data-sourcepos="3:1-3:7">
- <td data-sourcepos="3:2-3:6">bar</td>
- <td data-sourcepos="3:0-3:0"></td>
- </tr>
- <tr data-sourcepos="4:1-4:19">
- <td data-sourcepos="4:2-4:6">bar</td>
- <td data-sourcepos="4:8-4:12">baz</td>
- </tr>
- </tbody>
- </table>
- wysiwyg: |-
- Error - check implementation:
- Hast node of type "table" not supported by this converter. Please, provide an specification.
-04_10__leaf_blocks__tables_extension__008:
- canonical: |
- <table>
- <thead>
- <tr>
- <th>abc</th>
- <th>def</th>
- </tr>
- </thead>
- </table>
- static: |-
- <table data-sourcepos="1:1-2:13" dir="auto">
- <thead>
- <tr data-sourcepos="1:1-1:13">
- <th data-sourcepos="1:2-1:6">abc</th>
- <th data-sourcepos="1:8-1:12">def</th>
- </tr>
- </thead>
- </table>
- wysiwyg: |-
- Error - check implementation:
- Hast node of type "table" not supported by this converter. Please, provide an specification.
-05_01__container_blocks__block_quotes__001:
- canonical: |
- <blockquote>
- <h1>Foo</h1>
- <p>bar
- baz</p>
- </blockquote>
- static: |-
- <blockquote data-sourcepos="1:1-3:5" dir="auto">
- <h1 data-sourcepos="1:3-1:7">
- <a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>Foo</h1>
- <p data-sourcepos="2:3-3:5">bar
- baz</p>
- </blockquote>
- wysiwyg: |-
- <blockquote multiline="false"><h1>Foo</h1><p>bar
- baz</p></blockquote>
-05_01__container_blocks__block_quotes__002:
- canonical: |
- <blockquote>
- <h1>Foo</h1>
- <p>bar
- baz</p>
- </blockquote>
- static: |-
- <blockquote data-sourcepos="1:1-3:5" dir="auto">
- <h1 data-sourcepos="1:2-1:6">
- <a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>Foo</h1>
- <p data-sourcepos="2:2-3:5">bar
- baz</p>
- </blockquote>
- wysiwyg: |-
- <blockquote multiline="false"><h1>Foo</h1><p>bar
- baz</p></blockquote>
-05_01__container_blocks__block_quotes__003:
- canonical: |
- <blockquote>
- <h1>Foo</h1>
- <p>bar
- baz</p>
- </blockquote>
- static: |-
- <blockquote data-sourcepos="1:4-3:6" dir="auto">
- <h1 data-sourcepos="1:6-1:10">
- <a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>Foo</h1>
- <p data-sourcepos="2:6-3:6">bar
- baz</p>
- </blockquote>
- wysiwyg: |-
- <blockquote multiline="false"><h1>Foo</h1><p>bar
- baz</p></blockquote>
-05_01__container_blocks__block_quotes__004:
- canonical: |
- <pre><code>&gt; # Foo
- &gt; bar
- &gt; baz
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:5-3:9" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">&gt; # Foo</span>
- <span id="LC2" class="line" lang="plaintext">&gt; bar</span>
- <span id="LC3" class="line" lang="plaintext">&gt; baz</span></code></pre>
- <copy-code></copy-code>
- </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__005:
- canonical: |
- <blockquote>
- <h1>Foo</h1>
- <p>bar
- baz</p>
- </blockquote>
- static: |-
- <blockquote data-sourcepos="1:1-3:3" dir="auto">
- <h1 data-sourcepos="1:3-1:7">
- <a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>Foo</h1>
- <p data-sourcepos="2:3-3:3">bar
- baz</p>
- </blockquote>
- wysiwyg: |-
- <blockquote multiline="false"><h1>Foo</h1><p>bar
- baz</p></blockquote>
-05_01__container_blocks__block_quotes__006:
- canonical: |
- <blockquote>
- <p>bar
- baz
- foo</p>
- </blockquote>
- static: |-
- <blockquote data-sourcepos="1:1-3:5" dir="auto">
- <p data-sourcepos="1:3-3:5">bar
- baz
- foo</p>
- </blockquote>
- wysiwyg: |-
- <blockquote multiline="false"><p>bar
- baz
- foo</p></blockquote>
-05_01__container_blocks__block_quotes__007:
- canonical: |
- <blockquote>
- <p>foo</p>
- </blockquote>
- <hr />
- static: |-
- <blockquote data-sourcepos="1:1-1:5" dir="auto">
- <p data-sourcepos="1:3-1:5">foo</p>
- </blockquote>
- <hr data-sourcepos="2:1-2:3">
- wysiwyg: |-
- <blockquote multiline="false"><p>foo</p></blockquote>
-05_01__container_blocks__block_quotes__008:
- canonical: |
- <blockquote>
- <ul>
- <li>foo</li>
- </ul>
- </blockquote>
- <ul>
- <li>bar</li>
- </ul>
- static: |-
- <blockquote data-sourcepos="1:1-1:7" dir="auto">
- <ul data-sourcepos="1:3-1:7">
- <li data-sourcepos="1:3-1:7">foo</li>
- </ul>
- </blockquote>
- <ul data-sourcepos="2:1-2:5" dir="auto">
- <li data-sourcepos="2:1-2:5">bar</li>
- </ul>
- wysiwyg: |-
- <blockquote multiline="false"><ul bullet="*"><li><p>foo</p></li></ul></blockquote>
-05_01__container_blocks__block_quotes__009:
- canonical: |
- <blockquote>
- <pre><code>foo
- </code></pre>
- </blockquote>
- <pre><code>bar
- </code></pre>
- static: |-
- <blockquote data-sourcepos="1:1-1:9" dir="auto">
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:7-1:9" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo</span></code></pre>
- <copy-code></copy-code>
- </div>
- </blockquote>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="2:5-2:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">bar</span></code></pre>
- <copy-code></copy-code>
- </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__010:
- canonical: |
- <blockquote>
- <pre><code></code></pre>
- </blockquote>
- <p>foo</p>
- <pre><code></code></pre>
- static: |-
- <blockquote data-sourcepos="1:1-1:5" dir="auto">
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:3-2:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code></code></pre>
- <copy-code></copy-code>
- </div>
- </blockquote>
- <p data-sourcepos="2:1-2:3" dir="auto">foo</p>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="3:1-3:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <blockquote multiline="false"><pre class="content-editor-code-block undefined code highlight"><code></code></pre></blockquote>
-05_01__container_blocks__block_quotes__011:
- canonical: |
- <blockquote>
- <p>foo
- - bar</p>
- </blockquote>
- static: |-
- <blockquote data-sourcepos="1:1-2:9" dir="auto">
- <p data-sourcepos="1:3-2:9">foo
- - bar</p>
- </blockquote>
- wysiwyg: |-
- <blockquote multiline="false"><p>foo
- - bar</p></blockquote>
-05_01__container_blocks__block_quotes__012:
- canonical: |
- <blockquote>
- </blockquote>
- static: |-
- <blockquote data-sourcepos="1:1-1:1" dir="auto">
- </blockquote>
- wysiwyg: |-
- <blockquote multiline="false"><p></p></blockquote>
-05_01__container_blocks__block_quotes__013:
- canonical: |
- <blockquote>
- </blockquote>
- static: |-
- <blockquote data-sourcepos="1:1-3:2" dir="auto">
- </blockquote>
- wysiwyg: |-
- <blockquote multiline="false"><p></p></blockquote>
-05_01__container_blocks__block_quotes__014:
- canonical: |
- <blockquote>
- <p>foo</p>
- </blockquote>
- static: |-
- <blockquote data-sourcepos="1:1-3:3" dir="auto">
- <p data-sourcepos="2:3-2:5">foo</p>
- </blockquote>
- wysiwyg: |-
- <blockquote multiline="false"><p>foo</p></blockquote>
-05_01__container_blocks__block_quotes__015:
- canonical: |
- <blockquote>
- <p>foo</p>
- </blockquote>
- <blockquote>
- <p>bar</p>
- </blockquote>
- static: |-
- <blockquote data-sourcepos="1:1-1:5" dir="auto">
- <p data-sourcepos="1:3-1:5">foo</p>
- </blockquote>
- <blockquote data-sourcepos="3:1-3:5" dir="auto">
- <p data-sourcepos="3:3-3:5">bar</p>
- </blockquote>
- wysiwyg: |-
- <blockquote multiline="false"><p>foo</p></blockquote>
-05_01__container_blocks__block_quotes__016:
- canonical: |
- <blockquote>
- <p>foo
- bar</p>
- </blockquote>
- static: |-
- <blockquote data-sourcepos="1:1-2:5" dir="auto">
- <p data-sourcepos="1:3-2:5">foo
- bar</p>
- </blockquote>
- wysiwyg: |-
- <blockquote multiline="false"><p>foo
- bar</p></blockquote>
-05_01__container_blocks__block_quotes__017:
- canonical: |
- <blockquote>
- <p>foo</p>
- <p>bar</p>
- </blockquote>
- static: |-
- <blockquote data-sourcepos="1:1-3:5" dir="auto">
- <p data-sourcepos="1:3-1:5">foo</p>
- <p data-sourcepos="3:3-3:5">bar</p>
- </blockquote>
- wysiwyg: |-
- <blockquote multiline="false"><p>foo</p><p>bar</p></blockquote>
-05_01__container_blocks__block_quotes__018:
- canonical: |
- <p>foo</p>
- <blockquote>
- <p>bar</p>
- </blockquote>
- static: |-
- <p data-sourcepos="1:1-1:3" dir="auto">foo</p>
- <blockquote data-sourcepos="2:1-2:5" dir="auto">
- <p data-sourcepos="2:3-2:5">bar</p>
- </blockquote>
- wysiwyg: |-
- <p>foo</p>
-05_01__container_blocks__block_quotes__019:
- canonical: |
- <blockquote>
- <p>aaa</p>
- </blockquote>
- <hr />
- <blockquote>
- <p>bbb</p>
- </blockquote>
- static: |-
- <blockquote data-sourcepos="1:1-1:5" dir="auto">
- <p data-sourcepos="1:3-1:5">aaa</p>
- </blockquote>
- <hr data-sourcepos="2:1-2:3">
- <blockquote data-sourcepos="3:1-3:5" dir="auto">
- <p data-sourcepos="3:3-3:5">bbb</p>
- </blockquote>
- wysiwyg: |-
- <blockquote multiline="false"><p>aaa</p></blockquote>
-05_01__container_blocks__block_quotes__020:
- canonical: |
- <blockquote>
- <p>bar
- baz</p>
- </blockquote>
- static: |-
- <blockquote data-sourcepos="1:1-2:3" dir="auto">
- <p data-sourcepos="1:3-2:3">bar
- baz</p>
- </blockquote>
- wysiwyg: |-
- <blockquote multiline="false"><p>bar
- baz</p></blockquote>
-05_01__container_blocks__block_quotes__021:
- canonical: |
- <blockquote>
- <p>bar</p>
- </blockquote>
- <p>baz</p>
- static: |-
- <blockquote data-sourcepos="1:1-1:5" dir="auto">
- <p data-sourcepos="1:3-1:5">bar</p>
- </blockquote>
- <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__022:
- canonical: |
- <blockquote>
- <p>bar</p>
- </blockquote>
- <p>baz</p>
- static: |-
- <blockquote data-sourcepos="1:1-2:1" dir="auto">
- <p data-sourcepos="1:3-1:5">bar</p>
- </blockquote>
- <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__023:
- canonical: |
- <blockquote>
- <blockquote>
- <blockquote>
- <p>foo
- bar</p>
- </blockquote>
- </blockquote>
- </blockquote>
- static: |-
- <blockquote data-sourcepos="1:1-2:3" dir="auto">
- <blockquote data-sourcepos="1:3-2:3">
- <blockquote data-sourcepos="1:5-2:3">
- <p data-sourcepos="1:7-2:3">foo
- bar</p>
- </blockquote>
- </blockquote>
- </blockquote>
- wysiwyg: |-
- <blockquote multiline="false"><blockquote multiline="false"><blockquote multiline="false"><p>foo
- bar</p></blockquote></blockquote></blockquote>
-05_01__container_blocks__block_quotes__024:
- canonical: |
- <blockquote>
- <blockquote>
- <blockquote>
- <p>foo
- bar
- baz</p>
- </blockquote>
- </blockquote>
- </blockquote>
- static: |-
- <blockquote data-sourcepos="1:1-3:5" dir="auto">
- <blockquote data-sourcepos="1:2-3:5">
- <blockquote data-sourcepos="1:3-3:5">
- <p data-sourcepos="1:5-3:5">foo
- bar
- baz</p>
- </blockquote>
- </blockquote>
- </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__025:
- canonical: |
- <blockquote>
- <pre><code>code
- </code></pre>
- </blockquote>
- <blockquote>
- <p>not code</p>
- </blockquote>
- static: |-
- <blockquote data-sourcepos="1:1-1:10" dir="auto">
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:7-1:10" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">code</span></code></pre>
- <copy-code></copy-code>
- </div>
- </blockquote>
- <blockquote data-sourcepos="3:1-3:13" dir="auto">
- <p data-sourcepos="3:6-3:13">not code</p>
- </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__001:
- 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
- with two lines.</p>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="4:5-5:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">indented code</span></code></pre>
- <copy-code></copy-code>
- </div>
- <blockquote data-sourcepos="6:1-6:16" dir="auto">
- <p data-sourcepos="6:3-6:16">A block quote.</p>
- </blockquote>
- wysiwyg: |-
- <p>A paragraph
- with two lines.</p>
-05_02__container_blocks__list_items__002:
- 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">
- <li data-sourcepos="1:1-6:20">
- <p data-sourcepos="1:5-2:19">A paragraph
- with two lines.</p>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="4:9-5:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">indented code</span></code></pre>
- <copy-code></copy-code>
- </div>
- <blockquote data-sourcepos="6:5-6:20">
- <p data-sourcepos="6:7-6:20">A block quote.</p>
- </blockquote>
- </li>
- </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__003:
- canonical: |
- <ul>
- <li>one</li>
- </ul>
- <p>two</p>
- static: |-
- <ul data-sourcepos="1:1-2:0" dir="auto">
- <li data-sourcepos="1:1-2:0">one</li>
- </ul>
- <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__004:
- canonical: |
- <ul>
- <li>
- <p>one</p>
- <p>two</p>
- </li>
- </ul>
- static: |-
- <ul data-sourcepos="1:1-3:5" dir="auto">
- <li data-sourcepos="1:1-3:5">
- <p data-sourcepos="1:3-1:5">one</p>
- <p data-sourcepos="3:3-3:5">two</p>
- </li>
- </ul>
- wysiwyg: |-
- <ul bullet="*"><li><p>one</p><p>two</p></li></ul>
-05_02__container_blocks__list_items__005:
- canonical: |
- <ul>
- <li>one</li>
- </ul>
- <pre><code> two
- </code></pre>
- static: |-
- <ul data-sourcepos="1:2-2:0" dir="auto">
- <li data-sourcepos="1:2-2:0">one</li>
- </ul>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="3:5-3:8" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext"> two</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <ul bullet="*"><li><p>one</p></li></ul>
-05_02__container_blocks__list_items__006:
- canonical: |
- <ul>
- <li>
- <p>one</p>
- <p>two</p>
- </li>
- </ul>
- static: |-
- <ul data-sourcepos="1:2-3:9" dir="auto">
- <li data-sourcepos="1:2-3:9">
- <p data-sourcepos="1:7-1:9">one</p>
- <p data-sourcepos="3:7-3:9">two</p>
- </li>
- </ul>
- wysiwyg: |-
- <ul bullet="*"><li><p>one</p><p>two</p></li></ul>
-05_02__container_blocks__list_items__007:
- 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">
- <blockquote data-sourcepos="1:6-3:10">
- <ol data-sourcepos="1:8-3:10">
- <li data-sourcepos="1:8-3:10">
- <p data-sourcepos="1:12-1:14">one</p>
- <p data-sourcepos="3:8-3:10">two</p>
- </li>
- </ol>
- </blockquote>
- </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__008:
- canonical: |
- <blockquote>
- <blockquote>
- <ul>
- <li>one</li>
- </ul>
- <p>two</p>
- </blockquote>
- </blockquote>
- static: |-
- <blockquote data-sourcepos="1:1-3:10" dir="auto">
- <blockquote data-sourcepos="1:2-3:10">
- <ul data-sourcepos="1:3-2:2">
- <li data-sourcepos="1:3-2:2">one</li>
- </ul>
- <p data-sourcepos="3:8-3:10">two</p>
- </blockquote>
- </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__009:
- canonical: |
- <p>-one</p>
- <p>2.two</p>
- static: |-
- <p data-sourcepos="1:1-1:4" dir="auto">-one</p>
- <p data-sourcepos="3:1-3:5" dir="auto">2.two</p>
- wysiwyg: |-
- <p>-one</p>
-05_02__container_blocks__list_items__010:
- canonical: |
- <ul>
- <li>
- <p>foo</p>
- <p>bar</p>
- </li>
- </ul>
- static: |-
- <ul data-sourcepos="1:1-4:5" dir="auto">
- <li data-sourcepos="1:1-4:5">
- <p data-sourcepos="1:3-1:5">foo</p>
- <p data-sourcepos="4:3-4:5">bar</p>
- </li>
- </ul>
- wysiwyg: |-
- <ul bullet="*"><li><p>foo</p><p>bar</p></li></ul>
-05_02__container_blocks__list_items__011:
- 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">
- <li data-sourcepos="1:1-9:9">
- <p data-sourcepos="1:5-1:7">foo</p>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="3:5-5:7" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">bar</span></code></pre>
- <copy-code></copy-code>
- </div>
- <p data-sourcepos="7:5-7:7">baz</p>
- <blockquote data-sourcepos="9:5-9:9">
- <p data-sourcepos="9:7-9:9">bam</p>
- </blockquote>
- </li>
- </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__012:
- canonical: |
- <ul>
- <li>
- <p>Foo</p>
- <pre><code>bar
-
-
- baz
- </code></pre>
- </li>
- </ul>
- static: |-
- <ul data-sourcepos="1:1-6:9" dir="auto">
- <li data-sourcepos="1:1-6:9">
- <p data-sourcepos="1:3-1:5">Foo</p>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="3:7-6:9" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">bar</span>
- <span id="LC2" class="line" lang="plaintext"></span>
- <span id="LC3" class="line" lang="plaintext"></span>
- <span id="LC4" class="line" lang="plaintext">baz</span></code></pre>
- <copy-code></copy-code>
- </div>
- </li>
- </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__013:
- canonical: |
- <ol start="123456789">
- <li>ok</li>
- </ol>
- static: |-
- <ol start="123456789" data-sourcepos="1:1-1:13" dir="auto">
- <li data-sourcepos="1:1-1:13">ok</li>
- </ol>
- wysiwyg: |-
- <ol parens="false"><li><p>ok</p></li></ol>
-05_02__container_blocks__list_items__014:
- 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__015:
- canonical: |
- <ol start="0">
- <li>ok</li>
- </ol>
- static: |-
- <ol start="0" data-sourcepos="1:1-1:5" dir="auto">
- <li data-sourcepos="1:1-1:5">ok</li>
- </ol>
- wysiwyg: |-
- <ol parens="false"><li><p>ok</p></li></ol>
-05_02__container_blocks__list_items__016:
- canonical: |
- <ol start="3">
- <li>ok</li>
- </ol>
- static: |-
- <ol start="3" data-sourcepos="1:1-1:7" dir="auto">
- <li data-sourcepos="1:1-1:7">ok</li>
- </ol>
- wysiwyg: |-
- <ol parens="false"><li><p>ok</p></li></ol>
-05_02__container_blocks__list_items__017:
- 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__018:
- canonical: |
- <ul>
- <li>
- <p>foo</p>
- <pre><code>bar
- </code></pre>
- </li>
- </ul>
- static: |-
- <ul data-sourcepos="1:1-3:9" dir="auto">
- <li data-sourcepos="1:1-3:9">
- <p data-sourcepos="1:3-1:5">foo</p>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="3:7-3:9" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">bar</span></code></pre>
- <copy-code></copy-code>
- </div>
- </li>
- </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__019:
- 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">
- <li data-sourcepos="1:3-3:14">
- <p data-sourcepos="1:8-1:10">foo</p>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="3:12-3:14" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">bar</span></code></pre>
- <copy-code></copy-code>
- </div>
- </li>
- </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__020:
- 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">
- <pre data-sourcepos="1:5-2:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">indented code</span></code></pre>
- <copy-code></copy-code>
- </div>
- <p data-sourcepos="3:1-3:9" dir="auto">paragraph</p>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="5:5-5:13" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">more code</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>indented code</code></pre>
-05_02__container_blocks__list_items__021:
- 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">
- <li data-sourcepos="1:1-5:16">
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:8-2:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">indented code</span></code></pre>
- <copy-code></copy-code>
- </div>
- <p data-sourcepos="3:4-3:12">paragraph</p>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="5:8-5:16" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">more code</span></code></pre>
- <copy-code></copy-code>
- </div>
- </li>
- </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__022:
- 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">
- <li data-sourcepos="1:1-5:16">
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:8-2:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext"> indented code</span></code></pre>
- <copy-code></copy-code>
- </div>
- <p data-sourcepos="3:4-3:12">paragraph</p>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="5:8-5:16" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">more code</span></code></pre>
- <copy-code></copy-code>
- </div>
- </li>
- </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__023:
- canonical: |
- <p>foo</p>
- <p>bar</p>
- static: |-
- <p data-sourcepos="1:4-1:6" dir="auto">foo</p>
- <p data-sourcepos="3:1-3:3" dir="auto">bar</p>
- wysiwyg: |-
- <p>foo</p>
-05_02__container_blocks__list_items__024:
- canonical: |
- <ul>
- <li>foo</li>
- </ul>
- <p>bar</p>
- static: |-
- <ul data-sourcepos="1:1-2:0" dir="auto">
- <li data-sourcepos="1:1-2:0">foo</li>
- </ul>
- <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__025:
- canonical: |
- <ul>
- <li>
- <p>foo</p>
- <p>bar</p>
- </li>
- </ul>
- static: |-
- <ul data-sourcepos="1:1-3:6" dir="auto">
- <li data-sourcepos="1:1-3:6">
- <p data-sourcepos="1:4-1:6">foo</p>
- <p data-sourcepos="3:4-3:6">bar</p>
- </li>
- </ul>
- wysiwyg: |-
- <ul bullet="*"><li><p>foo</p><p>bar</p></li></ul>
-05_02__container_blocks__list_items__026:
- 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">
- <li data-sourcepos="1:1-2:5">foo</li>
- <li data-sourcepos="3:1-6:5">
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="4:3-6:5" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">bar</span></code></pre>
- <copy-code></copy-code>
- </div>
- </li>
- <li data-sourcepos="7:1-8:9">
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="8:7-8:9" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">baz</span></code></pre>
- <copy-code></copy-code>
- </div>
- </li>
- </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__027:
- canonical: |
- <ul>
- <li>foo</li>
- </ul>
- static: |-
- <ul data-sourcepos="1:1-2:5" dir="auto">
- <li data-sourcepos="1:1-2:5">foo</li>
- </ul>
- wysiwyg: |-
- <ul bullet="*"><li><p>foo</p></li></ul>
-05_02__container_blocks__list_items__028:
- canonical: |
- <ul>
- <li></li>
- </ul>
- <p>foo</p>
- static: |-
- <ul data-sourcepos="1:1-2:0" dir="auto">
- <li data-sourcepos="1:1-1:1">
- </li>
- </ul>
- <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__029:
- canonical: |
- <ul>
- <li>foo</li>
- <li></li>
- <li>bar</li>
- </ul>
- static: |-
- <ul data-sourcepos="1:1-3:5" dir="auto">
- <li data-sourcepos="1:1-1:5">foo</li>
- <li data-sourcepos="2:1-2:1">
- </li>
- <li data-sourcepos="3:1-3:5">bar</li>
- </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__030:
- canonical: |
- <ul>
- <li>foo</li>
- <li></li>
- <li>bar</li>
- </ul>
- static: |-
- <ul data-sourcepos="1:1-3:5" dir="auto">
- <li data-sourcepos="1:1-1:5">foo</li>
- <li data-sourcepos="2:1-2:4">
- </li>
- <li data-sourcepos="3:1-3:5">bar</li>
- </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__031:
- canonical: |
- <ol>
- <li>foo</li>
- <li></li>
- <li>bar</li>
- </ol>
- static: |-
- <ol data-sourcepos="1:1-3:6" dir="auto">
- <li data-sourcepos="1:1-1:6">foo</li>
- <li data-sourcepos="2:1-2:2">
- </li>
- <li data-sourcepos="3:1-3:6">bar</li>
- </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__032:
- canonical: |
- <ul>
- <li></li>
- </ul>
- static: |-
- <ul data-sourcepos="1:1-1:1" dir="auto">
- <li data-sourcepos="1:1-1:1">
- </li>
- </ul>
- wysiwyg: |-
- <ul bullet="*"><li><p></p></li></ul>
-05_02__container_blocks__list_items__033:
- canonical: |
- <p>foo
- *</p>
- <p>foo
- 1.</p>
- static: |-
- <p data-sourcepos="1:1-2:1" dir="auto">foo
- *</p>
- <p data-sourcepos="4:1-5:2" dir="auto">foo
- 1.</p>
- wysiwyg: |-
- <p>foo
- *</p>
-05_02__container_blocks__list_items__034:
- 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">
- <li data-sourcepos="1:2-6:21">
- <p data-sourcepos="1:6-2:20">A paragraph
- with two lines.</p>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="4:10-5:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">indented code</span></code></pre>
- <copy-code></copy-code>
- </div>
- <blockquote data-sourcepos="6:6-6:21">
- <p data-sourcepos="6:8-6:21">A block quote.</p>
- </blockquote>
- </li>
- </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__035:
- 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">
- <li data-sourcepos="1:3-6:22">
- <p data-sourcepos="1:7-2:21">A paragraph
- with two lines.</p>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="4:11-5:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">indented code</span></code></pre>
- <copy-code></copy-code>
- </div>
- <blockquote data-sourcepos="6:7-6:22">
- <p data-sourcepos="6:9-6:22">A block quote.</p>
- </blockquote>
- </li>
- </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__036:
- 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">
- <li data-sourcepos="1:4-6:23">
- <p data-sourcepos="1:8-2:22">A paragraph
- with two lines.</p>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="4:12-5:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">indented code</span></code></pre>
- <copy-code></copy-code>
- </div>
- <blockquote data-sourcepos="6:8-6:23">
- <p data-sourcepos="6:10-6:23">A block quote.</p>
- </blockquote>
- </li>
- </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__037:
- 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">
- <pre data-sourcepos="1:5-6:24" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">1. A paragraph</span>
- <span id="LC2" class="line" lang="plaintext"> with two lines.</span>
- <span id="LC3" class="line" lang="plaintext"></span>
- <span id="LC4" class="line" lang="plaintext"> indented code</span>
- <span id="LC5" class="line" lang="plaintext"></span>
- <span id="LC6" class="line" lang="plaintext"> &gt; A block quote.</span></code></pre>
- <copy-code></copy-code>
- </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__038:
- 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">
- <li data-sourcepos="1:3-6:22">
- <p data-sourcepos="1:7-2:15">A paragraph
- with two lines.</p>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="4:11-5:0" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">indented code</span></code></pre>
- <copy-code></copy-code>
- </div>
- <blockquote data-sourcepos="6:7-6:22">
- <p data-sourcepos="6:9-6:22">A block quote.</p>
- </blockquote>
- </li>
- </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__039:
- canonical: |
- <ol>
- <li>A paragraph
- with two lines.</li>
- </ol>
- static: |-
- <ol data-sourcepos="1:3-2:19" dir="auto">
- <li data-sourcepos="1:3-2:19">A paragraph
- with two lines.</li>
- </ol>
- wysiwyg: |-
- <ol parens="false"><li><p>A paragraph
- with two lines.</p></li></ol>
-05_02__container_blocks__list_items__040:
- canonical: |
- <blockquote>
- <ol>
- <li>
- <blockquote>
- <p>Blockquote
- continued here.</p>
- </blockquote>
- </li>
- </ol>
- </blockquote>
- static: |-
- <blockquote data-sourcepos="1:1-2:15" dir="auto">
- <ol data-sourcepos="1:3-2:15">
- <li data-sourcepos="1:3-2:15">
- <blockquote data-sourcepos="1:6-2:15">
- <p data-sourcepos="1:8-2:15">Blockquote
- continued here.</p>
- </blockquote>
- </li>
- </ol>
- </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__041:
- canonical: |
- <blockquote>
- <ol>
- <li>
- <blockquote>
- <p>Blockquote
- continued here.</p>
- </blockquote>
- </li>
- </ol>
- </blockquote>
- static: |-
- <blockquote data-sourcepos="1:1-2:17" dir="auto">
- <ol data-sourcepos="1:3-2:17">
- <li data-sourcepos="1:3-2:17">
- <blockquote data-sourcepos="1:6-2:17">
- <p data-sourcepos="1:8-2:17">Blockquote
- continued here.</p>
- </blockquote>
- </li>
- </ol>
- </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__042:
- 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">
- <li data-sourcepos="1:1-4:11">foo
- <ul data-sourcepos="2:3-4:11">
- <li data-sourcepos="2:3-4:11">bar
- <ul data-sourcepos="3:5-4:11">
- <li data-sourcepos="3:5-4:11">baz
- <ul data-sourcepos="4:7-4:11">
- <li data-sourcepos="4:7-4:11">boo</li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </li>
- </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__043:
- 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">
- <li data-sourcepos="1:1-1:5">foo</li>
- <li data-sourcepos="2:2-2:6">bar</li>
- <li data-sourcepos="3:3-3:7">baz</li>
- <li data-sourcepos="4:4-4:8">boo</li>
- </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__044:
- 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">
- <li data-sourcepos="1:1-2:9">foo
- <ul data-sourcepos="2:5-2:9">
- <li data-sourcepos="2:5-2:9">bar</li>
- </ul>
- </li>
- </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__045:
- 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">
- <li data-sourcepos="1:1-1:7">foo</li>
- </ol>
- <ul data-sourcepos="2:4-2:8" dir="auto">
- <li data-sourcepos="2:4-2:8">bar</li>
- </ul>
- wysiwyg: |-
- <ol parens="false"><li><p>foo</p></li></ol>
-05_02__container_blocks__list_items__046:
- canonical: |
- <ul>
- <li>
- <ul>
- <li>foo</li>
- </ul>
- </li>
- </ul>
- static: |-
- <ul data-sourcepos="1:1-1:7" dir="auto">
- <li data-sourcepos="1:1-1:7">
- <ul data-sourcepos="1:3-1:7">
- <li data-sourcepos="1:3-1:7">foo</li>
- </ul>
- </li>
- </ul>
- wysiwyg: |-
- <ul bullet="*"><li><p></p><ul bullet="*"><li><p>foo</p></li></ul></li></ul>
-05_02__container_blocks__list_items__047:
- 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">
- <li data-sourcepos="1:1-1:11">
- <ul data-sourcepos="1:4-1:11">
- <li data-sourcepos="1:4-1:11">
- <ol start="2" data-sourcepos="1:6-1:11">
- <li data-sourcepos="1:6-1:11">foo</li>
- </ol>
- </li>
- </ul>
- </li>
- </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__048:
- canonical: |
- <ul>
- <li>
- <h1>Foo</h1>
- </li>
- <li>
- <h2>Bar</h2>
- baz</li>
- </ul>
- static: |-
- <ul data-sourcepos="1:1-4:5" dir="auto">
- <li data-sourcepos="1:1-1:7">
- <h1 data-sourcepos="1:3-1:7">
- <a id="user-content-foo" class="anchor" href="#foo" aria-hidden="true"></a>Foo</h1>
- </li>
- <li data-sourcepos="2:1-4:5">
- <h2 data-sourcepos="2:3-4:5">
- <a id="user-content-bar" class="anchor" href="#bar" aria-hidden="true"></a>Bar</h2>
- baz</li>
- </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__049:
- 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">
- <li data-sourcepos="1:1-1:9" class="task-list-item">
- <task-button></task-button><input type="checkbox" class="task-list-item-checkbox" disabled> foo</li>
- <li data-sourcepos="2:1-2:9" class="task-list-item">
- <task-button></task-button><input type="checkbox" class="task-list-item-checkbox" checked disabled> bar</li>
- <li data-sourcepos="3:1-5:11" class="task-list-item">
- <task-button></task-button><input type="checkbox" class="task-list-item-checkbox" checked disabled> foo
- <ul data-sourcepos="4:3-5:11" class="task-list">
- <li data-sourcepos="4:3-4:11" class="task-list-item">
- <task-button></task-button><input type="checkbox" class="task-list-item-checkbox" disabled> bar</li>
- <li data-sourcepos="5:3-5:11" class="task-list-item">
- <task-button></task-button><input type="checkbox" class="task-list-item-checkbox" checked disabled> baz</li>
- </ul>
- </li>
- <li data-sourcepos="6:1-6:9" class="task-list-item">
- <task-button></task-button><input type="checkbox" class="task-list-item-checkbox" disabled> bim</li>
- <li data-sourcepos="7:1-7:5">foo</li>
- <li data-sourcepos="8:1-8:5">bar</li>
- </ul>
- <ul data-sourcepos="9:1-9:5" dir="auto">
- <li data-sourcepos="9:1-9:5">baz</li>
- </ul>
- wysiwyg: |-
- <ul bullet="*"><li><p>baz</p></li></ul>
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__050:
- 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">
- <li data-sourcepos="1:1-1:6">foo</li>
- <li data-sourcepos="2:1-2:6">bar</li>
- </ol>
- <ol start="3" data-sourcepos="3:1-3:6" dir="auto">
- <li data-sourcepos="3:1-3:6">baz</li>
- </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__051:
- canonical: |
- <p>Foo</p>
- <ul>
- <li>bar</li>
- <li>baz</li>
- </ul>
- static: |-
- <p data-sourcepos="1:1-1:3" dir="auto">Foo</p>
- <ul data-sourcepos="2:1-3:5" dir="auto">
- <li data-sourcepos="2:1-2:5">bar</li>
- <li data-sourcepos="3:1-3:5">baz</li>
- </ul>
- wysiwyg: |-
- <p>Foo</p>
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__052:
- 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
- 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__053:
- 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>
- <ol data-sourcepos="2:1-2:29" dir="auto">
- <li data-sourcepos="2:1-2:29">The number of doors is 6.</li>
- </ol>
- wysiwyg: |-
- <p>The number of windows in my house is</p>
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__054:
- 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">
- <li data-sourcepos="1:1-2:0">
- <p data-sourcepos="1:3-1:5">foo</p>
- </li>
- <li data-sourcepos="3:1-5:0">
- <p data-sourcepos="3:3-3:5">bar</p>
- </li>
- <li data-sourcepos="6:1-6:5">
- <p data-sourcepos="6:3-6:5">baz</p>
- </li>
- </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__055:
- 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">
- <li data-sourcepos="1:1-6:9">foo
- <ul data-sourcepos="2:3-6:9">
- <li data-sourcepos="2:3-6:9">bar
- <ul data-sourcepos="3:5-6:9">
- <li data-sourcepos="3:5-6:9">
- <p data-sourcepos="3:7-3:9">baz</p>
- <p data-sourcepos="6:7-6:9">bim</p>
- </li>
- </ul>
- </li>
- </ul>
- </li>
- </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__056:
- 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">
- <li data-sourcepos="1:1-1:5">foo</li>
- <li data-sourcepos="2:1-3:0">bar</li>
- </ul>
-
- <ul data-sourcepos="6:1-7:5" dir="auto">
- <li data-sourcepos="6:1-6:5">baz</li>
- <li data-sourcepos="7:1-7:5">bim</li>
- </ul>
- wysiwyg: |-
- Error - check implementation:
- Cannot destructure property 'className' of 'hastNode.properties' as it is undefined.
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__057:
- 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">
- <li data-sourcepos="1:1-4:0">
- <p data-sourcepos="1:5-1:7">foo</p>
- <p data-sourcepos="3:5-3:11">notcode</p>
- </li>
- <li data-sourcepos="5:1-6:0">
- <p data-sourcepos="5:5-5:7">foo</p>
- </li>
- </ul>
-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="9:5-9:8" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">code</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- Error - check implementation:
- Cannot destructure property 'className' of 'hastNode.properties' as it is undefined.
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__058:
- 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">
- <li data-sourcepos="1:1-1:3">a</li>
- <li data-sourcepos="2:2-2:4">b</li>
- <li data-sourcepos="3:3-3:5">c</li>
- <li data-sourcepos="4:4-4:6">d</li>
- <li data-sourcepos="5:3-5:5">e</li>
- <li data-sourcepos="6:2-6:4">f</li>
- <li data-sourcepos="7:1-7:3">g</li>
- </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__059:
- 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">
- <li data-sourcepos="1:1-2:0">
- <p data-sourcepos="1:4-1:4">a</p>
- </li>
- <li data-sourcepos="3:3-4:0">
- <p data-sourcepos="3:6-3:6">b</p>
- </li>
- <li data-sourcepos="5:4-5:7">
- <p data-sourcepos="5:7-5:7">c</p>
- </li>
- </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__060:
- 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">
- <li data-sourcepos="1:1-1:3">a</li>
- <li data-sourcepos="2:2-2:4">b</li>
- <li data-sourcepos="3:3-3:5">c</li>
- <li data-sourcepos="4:4-5:7">d
- - e</li>
- </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__061:
- 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">
- <li data-sourcepos="1:1-2:0">
- <p data-sourcepos="1:4-1:4">a</p>
- </li>
- <li data-sourcepos="3:3-4:0">
- <p data-sourcepos="3:6-3:6">b</p>
- </li>
- </ol>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="5:5-5:8" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">3. c</span></code></pre>
- <copy-code></copy-code>
- </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__062:
- 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">
- <li data-sourcepos="1:1-1:3">
- <p data-sourcepos="1:3-1:3">a</p>
- </li>
- <li data-sourcepos="2:1-3:0">
- <p data-sourcepos="2:3-2:3">b</p>
- </li>
- <li data-sourcepos="4:1-4:3">
- <p data-sourcepos="4:3-4:3">c</p>
- </li>
- </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__063:
- 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">
- <li data-sourcepos="1:1-1:3">
- <p data-sourcepos="1:3-1:3">a</p>
- </li>
- <li data-sourcepos="2:1-2:1">
- </li>
- <li data-sourcepos="4:1-4:3">
- <p data-sourcepos="4:3-4:3">c</p>
- </li>
- </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__064:
- 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">
- <li data-sourcepos="1:1-1:3">
- <p data-sourcepos="1:3-1:3">a</p>
- </li>
- <li data-sourcepos="2:1-4:3">
- <p data-sourcepos="2:3-2:3">b</p>
- <p data-sourcepos="4:3-4:3">c</p>
- </li>
- <li data-sourcepos="5:1-5:3">
- <p data-sourcepos="5:3-5:3">d</p>
- </li>
- </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__065:
- 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">
- <li data-sourcepos="1:1-1:3">
- <p data-sourcepos="1:3-1:3">a</p>
- </li>
- <li data-sourcepos="2:1-4:13">
- <p data-sourcepos="2:3-2:3">b</p>
- </li>
- <li data-sourcepos="5:1-5:3">
- <p data-sourcepos="5:3-5:3">d</p>
- </li>
- </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__066:
- 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">
- <li data-sourcepos="1:1-1:3">a</li>
- <li data-sourcepos="2:1-6:5">
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="2:3-6:5" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">b</span>
- <span id="LC2" class="line" lang="plaintext"></span>
- <span id="LC3" class="line" lang="plaintext"></span></code></pre>
- <copy-code></copy-code>
- </div>
- </li>
- <li data-sourcepos="7:1-7:3">c</li>
- </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__067:
- 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">
- <li data-sourcepos="1:1-4:5">a
- <ul data-sourcepos="2:3-4:5">
- <li data-sourcepos="2:3-4:5">
- <p data-sourcepos="2:5-2:5">b</p>
- <p data-sourcepos="4:5-4:5">c</p>
- </li>
- </ul>
- </li>
- <li data-sourcepos="5:1-5:3">d</li>
- </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__068:
- canonical: |
- <ul>
- <li>a
- <blockquote>
- <p>b</p>
- </blockquote>
- </li>
- <li>c</li>
- </ul>
- static: |-
- <ul data-sourcepos="1:1-4:3" dir="auto">
- <li data-sourcepos="1:1-3:3">a
- <blockquote data-sourcepos="2:3-3:3">
- <p data-sourcepos="2:5-2:5">b</p>
- </blockquote>
- </li>
- <li data-sourcepos="4:1-4:3">c</li>
- </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__069:
- 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">
- <li data-sourcepos="1:1-5:5">a
- <blockquote data-sourcepos="2:3-2:5">
- <p data-sourcepos="2:5-2:5">b</p>
- </blockquote>
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="3:3-5:5" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">c</span></code></pre>
- <copy-code></copy-code>
- </div>
- </li>
- <li data-sourcepos="6:1-6:3">d</li>
- </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__070:
- canonical: |
- <ul>
- <li>a</li>
- </ul>
- static: |-
- <ul data-sourcepos="1:1-1:3" dir="auto">
- <li data-sourcepos="1:1-1:3">a</li>
- </ul>
- wysiwyg: |-
- <ul bullet="*"><li><p>a</p></li></ul>
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__071:
- canonical: |
- <ul>
- <li>a
- <ul>
- <li>b</li>
- </ul>
- </li>
- </ul>
- static: |-
- <ul data-sourcepos="1:1-2:5" dir="auto">
- <li data-sourcepos="1:1-2:5">a
- <ul data-sourcepos="2:3-2:5">
- <li data-sourcepos="2:3-2:5">b</li>
- </ul>
- </li>
- </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__072:
- canonical: |
- <ol>
- <li>
- <pre><code>foo
- </code></pre>
- <p>bar</p>
- </li>
- </ol>
- static: |-
- <ol data-sourcepos="1:1-5:6" dir="auto">
- <li data-sourcepos="1:1-5:6">
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:4-3:6" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo</span></code></pre>
- <copy-code></copy-code>
- </div>
- <p data-sourcepos="5:4-5:6">bar</p>
- </li>
- </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__073:
- 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">
- <li data-sourcepos="1:1-4:5">
- <p data-sourcepos="1:3-1:5">foo</p>
- <ul data-sourcepos="2:3-3:0">
- <li data-sourcepos="2:3-3:0">bar</li>
- </ul>
- <p data-sourcepos="4:3-4:5">baz</p>
- </li>
- </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__074:
- 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">
- <li data-sourcepos="1:1-4:0">
- <p data-sourcepos="1:3-1:3">a</p>
- <ul data-sourcepos="2:3-4:0">
- <li data-sourcepos="2:3-2:5">b</li>
- <li data-sourcepos="3:3-4:0">c</li>
- </ul>
- </li>
- <li data-sourcepos="5:1-7:5">
- <p data-sourcepos="5:3-5:3">d</p>
- <ul data-sourcepos="6:3-7:5">
- <li data-sourcepos="6:3-6:5">e</li>
- <li data-sourcepos="7:3-7:5">f</li>
- </ul>
- </li>
- </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__001:
- 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__001:
- 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__002:
- 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__003:
- 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*
- &lt;br/&gt; not a tag
- <a href="/foo">not a link</a>
- `not code`
- 1. not a list
- * not a list
- <span>#</span> not a heading
- [foo]: /url "not a reference"
- <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__004:
- 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__005:
- canonical: |
- <p>foo<br />
- bar</p>
- static: |-
- <p data-sourcepos="1:1-2:3" dir="auto">foo<br>
- bar</p>
- wysiwyg: |-
- <p>foo<br>
- bar</p>
-06_02__inlines__backslash_escapes__006:
- 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__007:
- canonical: |
- <pre><code>\[\]
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:5-1:8" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">\[\]</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>\[\]</code></pre>
-06_02__inlines__backslash_escapes__008:
- canonical: |
- <pre><code>\[\]
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:1-3:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">\[\]</span></code></pre>
- <copy-code></copy-code>
- </div>
- wysiwyg: |-
- <pre class="content-editor-code-block undefined code highlight"><code>\[\]</code></pre>
-06_02__inlines__backslash_escapes__009:
- 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__010:
- canonical: |
- <a href="/bar\/)">
- static: |-
- <a href="/bar%5C/)" rel="nofollow noreferrer noopener" target="_blank"></a>
- wysiwyg: |-
- <p></p>
-06_02__inlines__backslash_escapes__011:
- 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__012:
- 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__013:
- canonical: |
- <pre><code class="language-foo+bar">foo
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:1-3:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="foo+bar" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo</span></code></pre>
- <copy-code></copy-code>
- </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__001:
- canonical: |
- <p>  &amp; © Æ Ď
- ¾ ℋ ⅆ
- ∲ ≧̸</p>
- static: |-
- <p data-sourcepos="1:1-3:32" dir="auto">  &amp; © Æ Ď
- ¾ ℋ ⅆ
- ∲ ≧̸</p>
- wysiwyg: |-
- <p>&nbsp; &amp; © Æ Ď
- ¾ ℋ ⅆ
- ∲ ≧̸</p>
-06_03__inlines__entity_and_numeric_character_references__002:
- 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__003:
- 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__004:
- 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;
- &amp;#987654321;
- &amp;#abcdef0;
- &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__005:
- 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__006:
- 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__007:
- 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__008:
- 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__009:
- 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__010:
- canonical: |
- <pre><code class="language-föö">foo
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:1-3:3" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="föö" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">foo</span></code></pre>
- <copy-code></copy-code>
- </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__011:
- 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__012:
- canonical: |
- <pre><code>f&amp;ouml;f&amp;ouml;
- </code></pre>
- static: |-
- <div class="gl-relative markdown-code-block js-markdown-code">
- <pre data-sourcepos="1:5-1:18" class="code highlight js-syntax-highlight language-plaintext" lang="plaintext" data-canonical-lang="" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">f&amp;ouml;f&amp;ouml;</span></code></pre>
- <copy-code></copy-code>
- </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__013:
- canonical: |
- <p>*foo*
- <em>foo</em></p>
- static: |-
- <p data-sourcepos="1:1-2:5" dir="auto">*foo*
- <em>foo</em></p>
- wysiwyg: |-
- <p>*foo*
- <em>foo</em></p>
-06_03__inlines__entity_and_numeric_character_references__014:
- canonical: |
- <p>* foo</p>
- <ul>
- <li>foo</li>
- </ul>
- static: |-
- <p data-sourcepos="1:1-1:9" dir="auto">* foo</p>
- <ul data-sourcepos="3:1-3:5" dir="auto">
- <li data-sourcepos="3:1-3:5">foo</li>
- </ul>
- wysiwyg: |-
- <p>* foo</p>
-06_03__inlines__entity_and_numeric_character_references__015:
- canonical: |
- <p>foo
-
- bar</p>
- static: |-
- <p data-sourcepos="1:1-1:16" dir="auto">foo
-
- bar</p>
- wysiwyg: |-
- <p>foo
-
- bar</p>
-06_03__inlines__entity_and_numeric_character_references__016:
- 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__017:
- 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__001:
- 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__002:
- 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__003:
- 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__004:
- 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__005:
- 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__006:
- 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__007:
- canonical: |
- <p><code> </code>
- <code> </code></p>
- static: |-
- <p data-sourcepos="1:1-2:4" dir="auto"><code> </code>
- <code> </code></p>
- wysiwyg: |-
- <p></p>
-06_04__inlines__code_spans__008:
- 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__009:
- 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__010:
- 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__011:
- 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__012:
- 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__013:
- 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__014:
- 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__015:
- 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__016:
- 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__017:
- 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__018:
- 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__019:
- 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__020:
- 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__021:
- 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__022:
- 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__001:
- 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__002:
- 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__003:
- 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__004:
- 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__005:
- 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__006:
- 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__007:
- 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__008:
- 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__009:
- 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__010:
- 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__011:
- 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__012:
- canonical: |
- <p>пристаням_стремятся_</p>
- static: |-
- <p data-sourcepos="1:1-1:38" dir="auto">пристаням_стремятся_</p>
- wysiwyg: |-
- <p>пристаням_стремятся_</p>
-06_05__inlines__emphasis_and_strong_emphasis__013:
- 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__014:
- 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__015:
- 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__016:
- 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__017:
- canonical: |
- <p>*foo bar
- *</p>
- static: |-
- <p data-sourcepos="1:1-2:1" dir="auto">*foo bar
- *</p>
- wysiwyg: |-
- <p>*foo bar
- *</p>
-06_05__inlines__emphasis_and_strong_emphasis__018:
- 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__019:
- 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__020:
- 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__021:
- 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__022:
- 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__023:
- 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__024:
- 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__025:
- canonical: |
- <p>_пристаням_стремятся</p>
- static: |-
- <p data-sourcepos="1:1-1:38" dir="auto">_пристаням_стремятся</p>
- wysiwyg: |-
- <p>_пристаням_стремятся</p>
-06_05__inlines__emphasis_and_strong_emphasis__026:
- 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__027:
- 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__028:
- 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__029:
- 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__030:
- 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__031:
- 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__032:
- 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__033:
- 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__034:
- canonical: |
- <p>__
- foo bar__</p>
- static: |-
- <p data-sourcepos="1:1-2:9" dir="auto">__
- foo bar__</p>
- wysiwyg: |-
- <p>__
- foo bar__</p>
-06_05__inlines__emphasis_and_strong_emphasis__035:
- 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__036:
- 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__037:
- 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__038:
- canonical: |
- <p>пристаням__стремятся__</p>
- static: |-
- <p data-sourcepos="1:1-1:40" dir="auto">пристаням__стремятся__</p>
- wysiwyg: |-
- <p>пристаням__стремятся__</p>
-06_05__inlines__emphasis_and_strong_emphasis__039:
- 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__040:
- 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__041:
- 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__042:
- 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__043:
- 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__044:
- 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.
- <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__045:
- 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__046:
- 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__047:
- 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__048:
- 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__049:
- 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__050:
- 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__051:
- canonical: |
- <p>__пристаням__стремятся</p>
- static: |-
- <p data-sourcepos="1:1-1:40" dir="auto">__пристаням__стремятся</p>
- wysiwyg: |-
- <p>__пристаням__стремятся</p>
-06_05__inlines__emphasis_and_strong_emphasis__052:
- 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__053:
- 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__054:
- 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__055:
- canonical: |
- <p><em>foo
- bar</em></p>
- static: |-
- <p data-sourcepos="1:1-2:4" dir="auto"><em>foo
- bar</em></p>
- wysiwyg: |-
- <p><em>foo
- bar</em></p>
-06_05__inlines__emphasis_and_strong_emphasis__056:
- 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__057:
- 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__058:
- 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__059:
- 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__060:
- 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__061:
- 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__062:
- 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__063:
- 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__064:
- 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__065:
- 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__066:
- 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__067:
- 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__068:
- 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__069:
- 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__070:
- 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__071:
- 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__072:
- 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__073:
- canonical: |
- <p><strong>foo
- bar</strong></p>
- static: |-
- <p data-sourcepos="1:1-2:5" dir="auto"><strong>foo
- bar</strong></p>
- wysiwyg: |-
- <p><strong>foo
- bar</strong></p>
-06_05__inlines__emphasis_and_strong_emphasis__074:
- 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__075:
- 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__076:
- 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__077:
- 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__078:
- 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__079:
- 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__080:
- 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__081:
- 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__082:
- 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>
- 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__083:
- 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__084:
- 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__085:
- 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__086:
- 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__087:
- 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__088:
- 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__089:
- 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__090:
- 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__091:
- 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__092:
- 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__093:
- 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__094:
- 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__095:
- 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__096:
- 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__097:
- 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__098:
- 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__099:
- 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__001:
- 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><s>Hi</s> Hello, world!</p>
-06_06__inlines__strikethrough_extension__002:
- canonical: |
- <p>This ~~has a</p>
- <p>new paragraph~~.</p>
- static: |-
- <p data-sourcepos="1:1-1:12" dir="auto">This ~~has a</p>
- <p data-sourcepos="3:1-3:16" dir="auto">new paragraph~~.</p>
- wysiwyg: |-
- <p>This ~~has a</p>
-06_07__inlines__links__001:
- 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__002:
- 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__003:
- 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__004:
- 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__005:
- 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__006:
- 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__007:
- canonical: |
- <p>[link](foo
- bar)</p>
- static: |-
- <p data-sourcepos="1:1-2:4" dir="auto">[link](foo
- bar)</p>
- wysiwyg: |-
- <p>[link](foo
- bar)</p>
-06_07__inlines__links__008:
- 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__009:
- 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__010:
- 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__011:
- 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
- <a href="%3Cb">a</a>c&gt;
- [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__012:
- 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__013:
- 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__014:
- 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__015:
- 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__016:
- 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__017:
- 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>
- <p data-sourcepos="3:1-3:35" dir="auto"><a href="http://example.com#fragment" rel="nofollow noreferrer noopener" target="_blank">link</a></p>
- <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__018:
- 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__019:
- 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__020:
- 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__021:
- 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>
- <a href="/url" title="title">link</a>
- <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__022:
- 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__023:
- 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__024:
- 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__025:
- 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__026:
- 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__027:
- 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__028:
- 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__029:
- 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__030:
- 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__031:
- 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__032:
- 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__033:
- 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__034:
- 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__035:
- 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__036:
- 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__037:
- 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__038:
- 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__039:
- 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__040:
- 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__041:
- 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__042:
- 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__043:
- 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__044:
- 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__045:
- 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__046:
- 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__047:
- 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__048:
- 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__049:
- 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__050:
- 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__051:
- 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__052:
- 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__053:
- 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__054:
- 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__055:
- 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__056:
- 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__057:
- 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__058:
- 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__059:
- canonical: |
- <p>[foo]
- <a href="/url" title="title">bar</a></p>
- static: |-
- <p data-sourcepos="1:1-2:5" 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__060:
- 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__061:
- 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__062:
- canonical: |
- <p>[foo][ref[]</p>
- <p>[ref[]: /uri</p>
- static: |-
- <p data-sourcepos="1:1-1:11" dir="auto">[foo][ref[]</p>
- <p data-sourcepos="3:1-3:12" dir="auto">[ref[]: /uri</p>
- wysiwyg: |-
- <p>[foo][ref[]</p>
-06_07__inlines__links__063:
- 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>
- <p data-sourcepos="3:1-3:16" dir="auto">[ref[bar]]: /uri</p>
- wysiwyg: |-
- <p>[foo][ref[bar]]</p>
-06_07__inlines__links__064:
- canonical: |
- <p>[[[foo]]]</p>
- <p>[[[foo]]]: /url</p>
- static: |-
- <p data-sourcepos="1:1-1:9" dir="auto">[[[foo]]]</p>
- <p data-sourcepos="3:1-3:15" dir="auto">[[[foo]]]: /url</p>
- wysiwyg: |-
- <p>[[[foo]]]</p>
-06_07__inlines__links__065:
- 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__066:
- 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__067:
- canonical: |
- <p>[]</p>
- <p>[]: /uri</p>
- static: |-
- <p data-sourcepos="1:1-1:2" dir="auto">[]</p>
- <p data-sourcepos="3:1-3:8" dir="auto">[]: /uri</p>
- wysiwyg: |-
- <p>[]</p>
-06_07__inlines__links__068:
- canonical: |
- <p>[
- ]</p>
- <p>[
- ]: /uri</p>
- static: |-
- <p data-sourcepos="1:1-2:2" dir="auto">[
- ]</p>
- <p data-sourcepos="4:1-5:8" dir="auto">[
- ]: /uri</p>
- wysiwyg: |-
- <p>[
- ]</p>
-06_07__inlines__links__069:
- 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__070:
- 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__071:
- 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__072:
- 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>
- []</p>
- wysiwyg: |-
- <p><a target="_blank" rel="noopener noreferrer nofollow" href="/url" title="title">foo</a>
- []</p>
-06_07__inlines__links__073:
- 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__074:
- 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__075:
- 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__076:
- 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__077:
- 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__078:
- 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__079:
- canonical: |
- <p>[foo]</p>
- static: |-
- <p data-sourcepos="1:1-1:6" dir="auto">[foo]</p>
- wysiwyg: |-
- <p>[foo]</p>
-06_07__inlines__links__080:
- 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__081:
- 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__082:
- 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__083:
- 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__084:
- 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__085:
- 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__086:
- 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__087:
- 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__001:
- 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__002:
- 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__003:
- 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__004:
- 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__005:
- 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__006:
- 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__007:
- 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__008:
- 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__009:
- 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__010:
- 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__011:
- 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__012:
- 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__013:
- 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__014:
- 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__015:
- 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__016:
- 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>
- []</p>
- wysiwyg: |-
- <p><img src="/url" alt="foo" title="title">
- []</p>
-06_08__inlines__images__017:
- 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__018:
- 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__019:
- canonical: |
- <p>![[foo]]</p>
- <p>[[foo]]: /url &quot;title&quot;</p>
- static: |-
- <p data-sourcepos="1:1-1:8" dir="auto">![[foo]]</p>
- <p data-sourcepos="3:1-3:21" dir="auto">[[foo]]: /url "title"</p>
- wysiwyg: |-
- <p>![[foo]]</p>
-06_08__inlines__images__020:
- 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__021:
- canonical: |
- <p>![foo]</p>
- static: |-
- <p data-sourcepos="1:1-1:7" dir="auto">![foo]</p>
- wysiwyg: |-
- <p>![foo]</p>
-06_08__inlines__images__022:
- 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__001:
- 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__002:
- 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__003:
- 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__004:
- 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__005:
- 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__006:
- 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__007:
- 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__008:
- 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__009:
- 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;<a target="_blank" rel="noopener noreferrer nofollow" href="http://foo.bar/baz">http://foo.bar/baz</a> bim&gt;</p>
-06_09__inlines__autolinks__010:
- 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__011:
- 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__012:
- 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__013:
- 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: |-
- Error - check implementation:
- Cannot read properties of undefined (reading 'end')
-06_09__inlines__autolinks__014:
- 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__015:
- 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; <a target="_blank" rel="noopener noreferrer nofollow" href="http://foo.bar">http://foo.bar</a> &gt;</p>
-06_09__inlines__autolinks__016:
- 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__017:
- 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__018:
- 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><a target="_blank" rel="noopener noreferrer nofollow" href="http://example.com">http://example.com</a></p>
-06_09__inlines__autolinks__019:
- 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><a target="_blank" rel="noopener noreferrer nofollow" href="mailto:foo@bar.example.com">foo@bar.example.com</a></p>
-06_10__inlines__autolinks_extension__001:
- 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><a target="_blank" rel="noopener noreferrer nofollow" href="http://www.commonmark.org">www.commonmark.org</a></p>
-06_10__inlines__autolinks_extension__002:
- 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 <a target="_blank" rel="noopener noreferrer nofollow" href="http://www.commonmark.org/help">www.commonmark.org/help</a> for more information.</p>
-06_10__inlines__autolinks_extension__003:
- 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>
- <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 <a target="_blank" rel="noopener noreferrer nofollow" href="http://www.commonmark.org">www.commonmark.org</a>.</p>
-06_10__inlines__autolinks_extension__004:
- 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>
- <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>
- <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>
- <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><a target="_blank" rel="noopener noreferrer nofollow" href="http://www.google.com/search?q=Markup+(business)">www.google.com/search?q=Markup+(business)</a></p>
-06_10__inlines__autolinks_extension__005:
- 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><a target="_blank" rel="noopener noreferrer nofollow" href="http://www.google.com/search?q=(business))+ok">www.google.com/search?q=(business))+ok</a></p>
-06_10__inlines__autolinks_extension__006:
- 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>
- <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><a target="_blank" rel="noopener noreferrer nofollow" href="http://www.google.com/search?q=commonmark&amp;hl=en">www.google.com/search?q=commonmark&amp;hl=en</a></p>
-06_10__inlines__autolinks_extension__007:
- 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><a target="_blank" rel="noopener noreferrer nofollow" href="http://www.commonmark.org/he">www.commonmark.org/he</a>&lt;lp</p>
-06_10__inlines__autolinks_extension__008:
- 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>
- <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>
- <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><a target="_blank" rel="noopener noreferrer nofollow" href="http://commonmark.org">http://commonmark.org</a></p>
-06_10__inlines__autolinks_extension__009:
- 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><a target="_blank" rel="noopener noreferrer nofollow" href="mailto:foo@bar.baz">foo@bar.baz</a></p>
-06_10__inlines__autolinks_extension__010:
- 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 <a target="_blank" rel="noopener noreferrer nofollow" href="mailto:hello+xyz@mail.example">hello+xyz@mail.example</a> is.</p>
-06_10__inlines__autolinks_extension__011:
- 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>
- <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>
- <p data-sourcepos="5:1-5:12" dir="auto">a.b-c_d@a.b-</p>
- <p data-sourcepos="7:1-7:12" dir="auto">a.b-c_d@a.b_</p>
- wysiwyg: |-
- <p><a target="_blank" rel="noopener noreferrer nofollow" href="mailto:a.b-c_d@a.b">a.b-c_d@a.b</a></p>
-06_11__inlines__raw_html__001:
- 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__002:
- 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__003:
- 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__004:
- 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__005:
- 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__006:
- 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__007:
- 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__008:
- 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__009:
- 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;
- foo&gt;&lt;bar/ &gt;
- &lt;foo bar=baz
- 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__010:
- 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__011:
- canonical: |
- <p></a></foo ></p>
- static: |-
- <p data-sourcepos="1:1-1:11" dir="auto"></p>
- wysiwyg: |-
- <p></p>
-06_11__inlines__raw_html__012:
- 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__013:
- 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:
- Cannot destructure property 'className' of 'hastNode.properties' as it is undefined.
-06_11__inlines__raw_html__014:
- 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__015:
- 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>
- <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__016:
- 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:
- Cannot destructure property 'className' of 'hastNode.properties' as it is undefined.
-06_11__inlines__raw_html__017:
- canonical: |
- <p>foo <!ELEMENT br EMPTY></p>
- static: |-
- <p data-sourcepos="1:1-1:23" dir="auto">foo &lt;!ELEMENT br EMPTY&gt;</p>
- wysiwyg: |-
- Error - check implementation:
- Cannot destructure property 'className' of 'hastNode.properties' as it is undefined.
-06_11__inlines__raw_html__018:
- canonical: |
- <p>foo <![CDATA[>&<]]></p>
- static: |-
- <p data-sourcepos="1:1-1:19" dir="auto">foo &lt;![CDATA[&gt;&amp;&lt;]]&gt;</p>
- wysiwyg: |-
- Error - check implementation:
- Cannot destructure property 'className' of 'hastNode.properties' as it is undefined.
-06_11__inlines__raw_html__019:
- 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__020:
- 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__021:
- 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__001:
- 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;
- &lt;blockquote&gt;
- &lt;xmp&gt; is disallowed. &lt;XMP&gt; is also disallowed.
- &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__001:
- canonical: |
- <p>foo<br />
- baz</p>
- static: |-
- <p data-sourcepos="1:1-2:3" dir="auto">foo<br>
- baz</p>
- wysiwyg: |-
- <p>foo<br>
- baz</p>
-06_13__inlines__hard_line_breaks__002:
- canonical: |
- <p>foo<br />
- baz</p>
- static: |-
- <p data-sourcepos="1:1-2:3" dir="auto">foo<br>
- baz</p>
- wysiwyg: |-
- <p>foo<br>
- baz</p>
-06_13__inlines__hard_line_breaks__003:
- canonical: |
- <p>foo<br />
- baz</p>
- static: |-
- <p data-sourcepos="1:1-2:3" dir="auto">foo<br>
- baz</p>
- wysiwyg: |-
- <p>foo<br>
- baz</p>
-06_13__inlines__hard_line_breaks__004:
- canonical: |
- <p>foo<br />
- bar</p>
- static: |-
- <p data-sourcepos="1:1-2:8" dir="auto">foo<br>
- bar</p>
- wysiwyg: |-
- <p>foo<br>
- bar</p>
-06_13__inlines__hard_line_breaks__005:
- canonical: |
- <p>foo<br />
- bar</p>
- static: |-
- <p data-sourcepos="1:1-2:8" dir="auto">foo<br>
- bar</p>
- wysiwyg: |-
- <p>foo<br>
- bar</p>
-06_13__inlines__hard_line_breaks__006:
- canonical: |
- <p><em>foo<br />
- bar</em></p>
- static: |-
- <p data-sourcepos="1:1-2:4" dir="auto"><em>foo<br>
- 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__007:
- canonical: |
- <p><em>foo<br />
- bar</em></p>
- static: |-
- <p data-sourcepos="1:1-2:4" dir="auto"><em>foo<br>
- 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__008:
- 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__009:
- 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__010:
- 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__011:
- 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__012:
- 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__013:
- 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__014:
- canonical: |
- <h3>foo\</h3>
- static: |-
- <h3 data-sourcepos="1:1-1:8" dir="auto">
- <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__015:
- canonical: |
- <h3>foo</h3>
- static: |-
- <h3 data-sourcepos="1:1-1:7" dir="auto">
- <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__001:
- canonical: |
- <p>foo
- baz</p>
- static: |-
- <p data-sourcepos="1:1-2:3" dir="auto">foo
- baz</p>
- wysiwyg: |-
- <p>foo
- baz</p>
-06_14__inlines__soft_line_breaks__002:
- canonical: |
- <p>foo
- baz</p>
- static: |-
- <p data-sourcepos="1:1-2:4" dir="auto">foo
- baz</p>
- wysiwyg: |-
- <p>foo
- baz</p>
-06_15__inlines__textual_content__001:
- 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__002:
- 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__003:
- 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__gitlab_specific_markdown__footnotes__001:
- canonical: ""
- static: |-
- <p data-sourcepos="1:1-1:27" dir="auto">footnote reference tag <sup class="footnote-ref"><a href="#fn-1-2118" id="fnref-1-2118" data-footnote-ref>1</a></sup></p>
- <section data-footnotes class="footnotes">
- <ol>
- <li id="fn-1-2118">
- <p data-sourcepos="3:7-3:19">footnote text <a href="#fnref-1-2118" data-footnote-backref aria-label="Back to content" class="footnote-backref"><gl-emoji title="leftwards arrow with hook" data-name="leftwards_arrow_with_hook" data-unicode-version="1.1">↩</gl-emoji></a></p>
- </li>
- </ol>
- </section>
- wysiwyg: |-
- Error - check implementation:
- Hast node of type "sup" not supported by this converter. Please, provide an specification.
diff --git a/spec/fixtures/glfm/example_snapshots/markdown.yml b/spec/fixtures/glfm/example_snapshots/markdown.yml
deleted file mode 100644
index d1fd16b10ce..00000000000
--- a/spec/fixtures/glfm/example_snapshots/markdown.yml
+++ /dev/null
@@ -1,2201 +0,0 @@
----
-02_01__preliminaries__tabs__001: "\tfoo\tbaz\t\tbim\n"
-02_01__preliminaries__tabs__002: " \tfoo\tbaz\t\tbim\n"
-02_01__preliminaries__tabs__003: " a\ta\n ὐ\ta\n"
-02_01__preliminaries__tabs__004: " - foo\n\n\tbar\n"
-02_01__preliminaries__tabs__005: "- foo\n\n\t\tbar\n"
-02_01__preliminaries__tabs__006: ">\t\tfoo\n"
-02_01__preliminaries__tabs__007: "-\t\tfoo\n"
-02_01__preliminaries__tabs__008: " foo\n\tbar\n"
-02_01__preliminaries__tabs__009: " - foo\n - bar\n\t - baz\n"
-02_01__preliminaries__tabs__010: "#\tFoo\n"
-02_01__preliminaries__tabs__011: "*\t*\t*\t\n"
-03_01__blocks_and_inlines__precedence__001: |
- - `one
- - two`
-04_01__leaf_blocks__thematic_breaks__001: |
- ***
- ---
- ___
-04_01__leaf_blocks__thematic_breaks__002: |
- +++
-04_01__leaf_blocks__thematic_breaks__003: |
- ===
-04_01__leaf_blocks__thematic_breaks__004: |
- --
- **
- __
-04_01__leaf_blocks__thematic_breaks__005: |2
- ***
- ***
- ***
-04_01__leaf_blocks__thematic_breaks__006: |2
- ***
-04_01__leaf_blocks__thematic_breaks__007: |
- Foo
- ***
-04_01__leaf_blocks__thematic_breaks__008: |
- _____________________________________
-04_01__leaf_blocks__thematic_breaks__009: |2
- - - -
-04_01__leaf_blocks__thematic_breaks__010: |2
- ** * ** * ** * **
-04_01__leaf_blocks__thematic_breaks__011: |
- - - - -
-04_01__leaf_blocks__thematic_breaks__012: "- - - - \n"
-04_01__leaf_blocks__thematic_breaks__013: |
- _ _ _ _ a
-
- a------
-
- ---a---
-04_01__leaf_blocks__thematic_breaks__014: |2
- *-*
-04_01__leaf_blocks__thematic_breaks__015: |
- - foo
- ***
- - bar
-04_01__leaf_blocks__thematic_breaks__016: |
- Foo
- ***
- bar
-04_01__leaf_blocks__thematic_breaks__017: |
- Foo
- ---
- bar
-04_01__leaf_blocks__thematic_breaks__018: |
- * Foo
- * * *
- * Bar
-04_01__leaf_blocks__thematic_breaks__019: |
- - Foo
- - * * *
-04_02__leaf_blocks__atx_headings__001: |
- # foo
- ## foo
- ### foo
- #### foo
- ##### foo
- ###### foo
-04_02__leaf_blocks__atx_headings__002: |
- ####### foo
-04_02__leaf_blocks__atx_headings__003: |
- #5 bolt
-
- #hashtag
-04_02__leaf_blocks__atx_headings__004: |
- \## foo
-04_02__leaf_blocks__atx_headings__005: |
- # foo *bar* \*baz\*
-04_02__leaf_blocks__atx_headings__006: "# foo \n"
-04_02__leaf_blocks__atx_headings__007: |2
- ### foo
- ## foo
- # foo
-04_02__leaf_blocks__atx_headings__008: |2
- # foo
-04_02__leaf_blocks__atx_headings__009: |
- foo
- # bar
-04_02__leaf_blocks__atx_headings__010: |
- ## foo ##
- ### bar ###
-04_02__leaf_blocks__atx_headings__011: |
- # foo ##################################
- ##### foo ##
-04_02__leaf_blocks__atx_headings__012: "### foo ### \n"
-04_02__leaf_blocks__atx_headings__013: |
- ### foo ### b
-04_02__leaf_blocks__atx_headings__014: |
- # foo#
-04_02__leaf_blocks__atx_headings__015: |
- ### foo \###
- ## foo #\##
- # foo \#
-04_02__leaf_blocks__atx_headings__016: |
- ****
- ## foo
- ****
-04_02__leaf_blocks__atx_headings__017: |
- Foo bar
- # baz
- Bar foo
-04_02__leaf_blocks__atx_headings__018: "## \n#\n### ###\n"
-04_03__leaf_blocks__setext_headings__001: |
- Foo *bar*
- =========
-
- Foo *bar*
- ---------
-04_03__leaf_blocks__setext_headings__002: |
- Foo *bar
- baz*
- ====
-04_03__leaf_blocks__setext_headings__003: " Foo *bar\nbaz*\t\n====\n"
-04_03__leaf_blocks__setext_headings__004: |
- Foo
- -------------------------
-
- Foo
- =
-04_03__leaf_blocks__setext_headings__005: |2
- Foo
- ---
-
- Foo
- -----
-
- Foo
- ===
-04_03__leaf_blocks__setext_headings__006: |2
- Foo
- ---
-
- Foo
- ---
-04_03__leaf_blocks__setext_headings__007: "Foo\n ---- \n"
-04_03__leaf_blocks__setext_headings__008: |
- Foo
- ---
-04_03__leaf_blocks__setext_headings__009: |
- Foo
- = =
-
- Foo
- --- -
-04_03__leaf_blocks__setext_headings__010: "Foo \n-----\n"
-04_03__leaf_blocks__setext_headings__011: |
- Foo\
- ----
-04_03__leaf_blocks__setext_headings__012: |
- `Foo
- ----
- `
-
- <a title="a lot
- ---
- of dashes"/>
-04_03__leaf_blocks__setext_headings__013: |
- > Foo
- ---
-04_03__leaf_blocks__setext_headings__014: |
- > foo
- bar
- ===
-04_03__leaf_blocks__setext_headings__015: |
- - Foo
- ---
-04_03__leaf_blocks__setext_headings__016: |
- Foo
- Bar
- ---
-04_03__leaf_blocks__setext_headings__017: |
- ---
- Foo
- ---
- Bar
- ---
- Baz
-04_03__leaf_blocks__setext_headings__018: |2
-
- ====
-04_03__leaf_blocks__setext_headings__019: |
- ---
- ---
-04_03__leaf_blocks__setext_headings__020: |
- - foo
- -----
-04_03__leaf_blocks__setext_headings__021: |2
- foo
- ---
-04_03__leaf_blocks__setext_headings__022: |
- > foo
- -----
-04_03__leaf_blocks__setext_headings__023: |
- \> foo
- ------
-04_03__leaf_blocks__setext_headings__024: |
- Foo
-
- bar
- ---
- baz
-04_03__leaf_blocks__setext_headings__025: |
- Foo
- bar
-
- ---
-
- baz
-04_03__leaf_blocks__setext_headings__026: |
- Foo
- bar
- * * *
- baz
-04_03__leaf_blocks__setext_headings__027: |
- Foo
- bar
- \---
- baz
-04_04__leaf_blocks__indented_code_blocks__001: |2
- a simple
- indented code block
-04_04__leaf_blocks__indented_code_blocks__002: |2
- - foo
-
- bar
-04_04__leaf_blocks__indented_code_blocks__003: |
- 1. foo
-
- - bar
-04_04__leaf_blocks__indented_code_blocks__004: |2
- <a/>
- *hi*
-
- - one
-04_04__leaf_blocks__indented_code_blocks__005: " chunk1\n\n chunk2\n \n \n
- \n chunk3\n"
-04_04__leaf_blocks__indented_code_blocks__006: " chunk1\n \n chunk2\n"
-04_04__leaf_blocks__indented_code_blocks__007: |+
- Foo
- bar
-
-04_04__leaf_blocks__indented_code_blocks__008: |2
- foo
- bar
-04_04__leaf_blocks__indented_code_blocks__009: |
- # Heading
- foo
- Heading
- ------
- foo
- ----
-04_04__leaf_blocks__indented_code_blocks__010: |2
- foo
- bar
-04_04__leaf_blocks__indented_code_blocks__011: "\n \n foo\n \n\n"
-04_04__leaf_blocks__indented_code_blocks__012: " foo \n"
-04_05__leaf_blocks__fenced_code_blocks__001: |
- ```
- <
- >
- ```
-04_05__leaf_blocks__fenced_code_blocks__002: |
- ~~~
- <
- >
- ~~~
-04_05__leaf_blocks__fenced_code_blocks__003: |
- ``
- foo
- ``
-04_05__leaf_blocks__fenced_code_blocks__004: |
- ```
- aaa
- ~~~
- ```
-04_05__leaf_blocks__fenced_code_blocks__005: |
- ~~~
- aaa
- ```
- ~~~
-04_05__leaf_blocks__fenced_code_blocks__006: |
- ````
- aaa
- ```
- ``````
-04_05__leaf_blocks__fenced_code_blocks__007: |
- ~~~~
- aaa
- ~~~
- ~~~~
-04_05__leaf_blocks__fenced_code_blocks__008: |
- ```
-04_05__leaf_blocks__fenced_code_blocks__009: |
- `````
-
- ```
- aaa
-04_05__leaf_blocks__fenced_code_blocks__010: |
- > ```
- > aaa
-
- bbb
-04_05__leaf_blocks__fenced_code_blocks__011: "```\n\n \n```\n"
-04_05__leaf_blocks__fenced_code_blocks__012: |
- ```
- ```
-04_05__leaf_blocks__fenced_code_blocks__013: |2
- ```
- aaa
- aaa
- ```
-04_05__leaf_blocks__fenced_code_blocks__014: |2
- ```
- aaa
- aaa
- aaa
- ```
-04_05__leaf_blocks__fenced_code_blocks__015: |2
- ```
- aaa
- aaa
- aaa
- ```
-04_05__leaf_blocks__fenced_code_blocks__016: |2
- ```
- aaa
- ```
-04_05__leaf_blocks__fenced_code_blocks__017: |
- ```
- aaa
- ```
-04_05__leaf_blocks__fenced_code_blocks__018: |2
- ```
- aaa
- ```
-04_05__leaf_blocks__fenced_code_blocks__019: |
- ```
- aaa
- ```
-04_05__leaf_blocks__fenced_code_blocks__020: |
- ``` ```
- aaa
-04_05__leaf_blocks__fenced_code_blocks__021: |
- ~~~~~~
- aaa
- ~~~ ~~
-04_05__leaf_blocks__fenced_code_blocks__022: |
- foo
- ```
- bar
- ```
- baz
-04_05__leaf_blocks__fenced_code_blocks__023: |
- foo
- ---
- ~~~
- bar
- ~~~
- # baz
-04_05__leaf_blocks__fenced_code_blocks__024: |
- ```ruby
- def foo(x)
- return 3
- end
- ```
-04_05__leaf_blocks__fenced_code_blocks__025: |
- ~~~~ ruby startline=3 $%@#$
- def foo(x)
- return 3
- end
- ~~~~~~~
-04_05__leaf_blocks__fenced_code_blocks__026: |
- ````;
- ````
-04_05__leaf_blocks__fenced_code_blocks__027: |
- ``` aa ```
- foo
-04_05__leaf_blocks__fenced_code_blocks__028: |
- ~~~ aa ``` ~~~
- foo
- ~~~
-04_05__leaf_blocks__fenced_code_blocks__029: |
- ```
- ``` aaa
- ```
-04_06__leaf_blocks__html_blocks__001: |
- <table><tr><td>
- <pre>
- **Hello**,
-
- _world_.
- </pre>
- </td></tr></table>
-04_06__leaf_blocks__html_blocks__002: |
- <table>
- <tr>
- <td>
- hi
- </td>
- </tr>
- </table>
-
- okay.
-04_06__leaf_blocks__html_blocks__003: |2
- <div>
- *hello*
- <foo><a>
-04_06__leaf_blocks__html_blocks__004: |
- </div>
- *foo*
-04_06__leaf_blocks__html_blocks__005: |
- <DIV CLASS="foo">
-
- *Markdown*
-
- </DIV>
-04_06__leaf_blocks__html_blocks__006: |
- <div id="foo"
- class="bar">
- </div>
-04_06__leaf_blocks__html_blocks__007: |
- <div id="foo" class="bar
- baz">
- </div>
-04_06__leaf_blocks__html_blocks__008: |
- <div>
- *foo*
-
- *bar*
-04_06__leaf_blocks__html_blocks__009: |
- <div id="foo"
- *hi*
-04_06__leaf_blocks__html_blocks__010: |
- <div class
- foo
-04_06__leaf_blocks__html_blocks__011: |
- <div *???-&&&-<---
- *foo*
-04_06__leaf_blocks__html_blocks__012: |
- <div><a href="bar">*foo*</a></div>
-04_06__leaf_blocks__html_blocks__013: |
- <table><tr><td>
- foo
- </td></tr></table>
-04_06__leaf_blocks__html_blocks__014: |
- <div></div>
- ``` c
- int x = 33;
- ```
-04_06__leaf_blocks__html_blocks__015: |
- <a href="foo">
- *bar*
- </a>
-04_06__leaf_blocks__html_blocks__016: |
- <Warning>
- *bar*
- </Warning>
-04_06__leaf_blocks__html_blocks__017: |
- <i class="foo">
- *bar*
- </i>
-04_06__leaf_blocks__html_blocks__018: |
- </ins>
- *bar*
-04_06__leaf_blocks__html_blocks__019: |
- <del>
- *foo*
- </del>
-04_06__leaf_blocks__html_blocks__020: |
- <del>
-
- *foo*
-
- </del>
-04_06__leaf_blocks__html_blocks__021: |
- <del>*foo*</del>
-04_06__leaf_blocks__html_blocks__022: |
- <pre language="haskell"><code>
- import Text.HTML.TagSoup
-
- main :: IO ()
- main = print $ parseTags tags
- </code></pre>
- okay
-04_06__leaf_blocks__html_blocks__023: |
- <script type="text/javascript">
- // JavaScript example
-
- document.getElementById("demo").innerHTML = "Hello JavaScript!";
- </script>
- okay
-04_06__leaf_blocks__html_blocks__024: |
- <style
- type="text/css">
- h1 {color:red;}
-
- p {color:blue;}
- </style>
- okay
-04_06__leaf_blocks__html_blocks__025: |
- <style
- type="text/css">
-
- foo
-04_06__leaf_blocks__html_blocks__026: |
- > <div>
- > foo
-
- bar
-04_06__leaf_blocks__html_blocks__027: |
- - <div>
- - foo
-04_06__leaf_blocks__html_blocks__028: |
- <style>p{color:red;}</style>
- *foo*
-04_06__leaf_blocks__html_blocks__029: |
- <!-- foo -->*bar*
- *baz*
-04_06__leaf_blocks__html_blocks__030: |
- <script>
- foo
- </script>1. *bar*
-04_06__leaf_blocks__html_blocks__031: |
- <!-- Foo
-
- bar
- baz -->
- okay
-04_06__leaf_blocks__html_blocks__032: |
- <?php
-
- echo '>';
-
- ?>
- okay
-04_06__leaf_blocks__html_blocks__033: |
- <!DOCTYPE html>
-04_06__leaf_blocks__html_blocks__034: |
- <![CDATA[
- function matchwo(a,b)
- {
- if (a < b && a < 0) then {
- return 1;
-
- } else {
-
- return 0;
- }
- }
- ]]>
- okay
-04_06__leaf_blocks__html_blocks__035: |2
- <!-- foo -->
-
- <!-- foo -->
-04_06__leaf_blocks__html_blocks__036: |2
- <div>
-
- <div>
-04_06__leaf_blocks__html_blocks__037: |
- Foo
- <div>
- bar
- </div>
-04_06__leaf_blocks__html_blocks__038: |
- <div>
- bar
- </div>
- *foo*
-04_06__leaf_blocks__html_blocks__039: |
- Foo
- <a href="bar">
- baz
-04_06__leaf_blocks__html_blocks__040: |
- <div>
-
- *Emphasized* text.
-
- </div>
-04_06__leaf_blocks__html_blocks__041: |
- <div>
- *Emphasized* text.
- </div>
-04_06__leaf_blocks__html_blocks__042: |
- <table>
-
- <tr>
-
- <td>
- Hi
- </td>
-
- </tr>
-
- </table>
-04_06__leaf_blocks__html_blocks__043: |
- <table>
-
- <tr>
-
- <td>
- Hi
- </td>
-
- </tr>
-
- </table>
-04_07__leaf_blocks__link_reference_definitions__001: |
- [foo]: /url "title"
-
- [foo]
-04_07__leaf_blocks__link_reference_definitions__002: " [foo]: \n /url \n 'the
- title' \n\n[foo]\n"
-04_07__leaf_blocks__link_reference_definitions__003: |
- [Foo*bar\]]:my_(url) 'title (with parens)'
-
- [Foo*bar\]]
-04_07__leaf_blocks__link_reference_definitions__004: |
- [Foo bar]:
- <my url>
- 'title'
-
- [Foo bar]
-04_07__leaf_blocks__link_reference_definitions__005: |
- [foo]: /url '
- title
- line1
- line2
- '
-
- [foo]
-04_07__leaf_blocks__link_reference_definitions__006: |
- [foo]: /url 'title
-
- with blank line'
-
- [foo]
-04_07__leaf_blocks__link_reference_definitions__007: |
- [foo]:
- /url
-
- [foo]
-04_07__leaf_blocks__link_reference_definitions__008: |
- [foo]:
-
- [foo]
-04_07__leaf_blocks__link_reference_definitions__009: |
- [foo]: <>
-
- [foo]
-04_07__leaf_blocks__link_reference_definitions__010: |
- [foo]: <bar>(baz)
-
- [foo]
-04_07__leaf_blocks__link_reference_definitions__011: |
- [foo]: /url\bar\*baz "foo\"bar\baz"
-
- [foo]
-04_07__leaf_blocks__link_reference_definitions__012: |
- [foo]
-
- [foo]: url
-04_07__leaf_blocks__link_reference_definitions__013: |
- [foo]
-
- [foo]: first
- [foo]: second
-04_07__leaf_blocks__link_reference_definitions__014: |
- [FOO]: /url
-
- [Foo]
-04_07__leaf_blocks__link_reference_definitions__015: |
- [ΑΓΩ]: /φου
-
- [αγω]
-04_07__leaf_blocks__link_reference_definitions__016: |
- [foo]: /url
-04_07__leaf_blocks__link_reference_definitions__017: |
- [
- foo
- ]: /url
- bar
-04_07__leaf_blocks__link_reference_definitions__018: |
- [foo]: /url "title" ok
-04_07__leaf_blocks__link_reference_definitions__019: |
- [foo]: /url
- "title" ok
-04_07__leaf_blocks__link_reference_definitions__020: |2
- [foo]: /url "title"
-
- [foo]
-04_07__leaf_blocks__link_reference_definitions__021: |
- ```
- [foo]: /url
- ```
-
- [foo]
-04_07__leaf_blocks__link_reference_definitions__022: |
- Foo
- [bar]: /baz
-
- [bar]
-04_07__leaf_blocks__link_reference_definitions__023: |
- # [Foo]
- [foo]: /url
- > bar
-04_07__leaf_blocks__link_reference_definitions__024: |
- [foo]: /url
- bar
- ===
- [foo]
-04_07__leaf_blocks__link_reference_definitions__025: |
- [foo]: /url
- ===
- [foo]
-04_07__leaf_blocks__link_reference_definitions__026: |
- [foo]: /foo-url "foo"
- [bar]: /bar-url
- "bar"
- [baz]: /baz-url
-
- [foo],
- [bar],
- [baz]
-04_07__leaf_blocks__link_reference_definitions__027: |
- [foo]
-
- > [foo]: /url
-04_07__leaf_blocks__link_reference_definitions__028: |
- [foo]: /url
-04_08__leaf_blocks__paragraphs__001: |
- aaa
-
- bbb
-04_08__leaf_blocks__paragraphs__002: |
- aaa
- bbb
-
- ccc
- ddd
-04_08__leaf_blocks__paragraphs__003: |
- aaa
-
-
- bbb
-04_08__leaf_blocks__paragraphs__004: |2
- aaa
- bbb
-04_08__leaf_blocks__paragraphs__005: |
- aaa
- bbb
- ccc
-04_08__leaf_blocks__paragraphs__006: |2
- aaa
- bbb
-04_08__leaf_blocks__paragraphs__007: |2
- aaa
- bbb
-04_08__leaf_blocks__paragraphs__008: "aaa \nbbb \n"
-04_09__leaf_blocks__blank_lines__001: " \n\naaa\n \n\n# aaa\n\n \n"
-04_10__leaf_blocks__tables_extension__001: |
- | foo | bar |
- | --- | --- |
- | baz | bim |
-04_10__leaf_blocks__tables_extension__002: |
- | abc | defghi |
- :-: | -----------:
- bar | baz
-04_10__leaf_blocks__tables_extension__003: |
- | f\|oo |
- | ------ |
- | b `\|` az |
- | b **\|** im |
-04_10__leaf_blocks__tables_extension__004: |
- | abc | def |
- | --- | --- |
- | bar | baz |
- > bar
-04_10__leaf_blocks__tables_extension__005: |
- | abc | def |
- | --- | --- |
- | bar | baz |
- bar
-
- bar
-04_10__leaf_blocks__tables_extension__006: |
- | abc | def |
- | --- |
- | bar |
-04_10__leaf_blocks__tables_extension__007: |
- | abc | def |
- | --- | --- |
- | bar |
- | bar | baz | boo |
-04_10__leaf_blocks__tables_extension__008: |
- | abc | def |
- | --- | --- |
-05_01__container_blocks__block_quotes__001: |
- > # Foo
- > bar
- > baz
-05_01__container_blocks__block_quotes__002: |
- ># Foo
- >bar
- > baz
-05_01__container_blocks__block_quotes__003: |2
- > # Foo
- > bar
- > baz
-05_01__container_blocks__block_quotes__004: |2
- > # Foo
- > bar
- > baz
-05_01__container_blocks__block_quotes__005: |
- > # Foo
- > bar
- baz
-05_01__container_blocks__block_quotes__006: |
- > bar
- baz
- > foo
-05_01__container_blocks__block_quotes__007: |
- > foo
- ---
-05_01__container_blocks__block_quotes__008: |
- > - foo
- - bar
-05_01__container_blocks__block_quotes__009: |
- > foo
- bar
-05_01__container_blocks__block_quotes__010: |
- > ```
- foo
- ```
-05_01__container_blocks__block_quotes__011: |
- > foo
- - bar
-05_01__container_blocks__block_quotes__012: |
- >
-05_01__container_blocks__block_quotes__013: ">\n> \n> \n"
-05_01__container_blocks__block_quotes__014: ">\n> foo\n> \n"
-05_01__container_blocks__block_quotes__015: |
- > foo
-
- > bar
-05_01__container_blocks__block_quotes__016: |
- > foo
- > bar
-05_01__container_blocks__block_quotes__017: |
- > foo
- >
- > bar
-05_01__container_blocks__block_quotes__018: |
- foo
- > bar
-05_01__container_blocks__block_quotes__019: |
- > aaa
- ***
- > bbb
-05_01__container_blocks__block_quotes__020: |
- > bar
- baz
-05_01__container_blocks__block_quotes__021: |
- > bar
-
- baz
-05_01__container_blocks__block_quotes__022: |
- > bar
- >
- baz
-05_01__container_blocks__block_quotes__023: |
- > > > foo
- bar
-05_01__container_blocks__block_quotes__024: |
- >>> foo
- > bar
- >>baz
-05_01__container_blocks__block_quotes__025: |
- > code
-
- > not code
-05_02__container_blocks__list_items__001: |
- A paragraph
- with two lines.
-
- indented code
-
- > A block quote.
-05_02__container_blocks__list_items__002: |
- 1. A paragraph
- with two lines.
-
- indented code
-
- > A block quote.
-05_02__container_blocks__list_items__003: |
- - one
-
- two
-05_02__container_blocks__list_items__004: |
- - one
-
- two
-05_02__container_blocks__list_items__005: |2
- - one
-
- two
-05_02__container_blocks__list_items__006: |2
- - one
-
- two
-05_02__container_blocks__list_items__007: |2
- > > 1. one
- >>
- >> two
-05_02__container_blocks__list_items__008: |
- >>- one
- >>
- > > two
-05_02__container_blocks__list_items__009: |
- -one
-
- 2.two
-05_02__container_blocks__list_items__010: |
- - foo
-
-
- bar
-05_02__container_blocks__list_items__011: |
- 1. foo
-
- ```
- bar
- ```
-
- baz
-
- > bam
-05_02__container_blocks__list_items__012: |
- - Foo
-
- bar
-
-
- baz
-05_02__container_blocks__list_items__013: |
- 123456789. ok
-05_02__container_blocks__list_items__014: |
- 1234567890. not ok
-05_02__container_blocks__list_items__015: |
- 0. ok
-05_02__container_blocks__list_items__016: |
- 003. ok
-05_02__container_blocks__list_items__017: |
- -1. not ok
-05_02__container_blocks__list_items__018: |
- - foo
-
- bar
-05_02__container_blocks__list_items__019: |2
- 10. foo
-
- bar
-05_02__container_blocks__list_items__020: |2
- indented code
-
- paragraph
-
- more code
-05_02__container_blocks__list_items__021: |
- 1. indented code
-
- paragraph
-
- more code
-05_02__container_blocks__list_items__022: |
- 1. indented code
-
- paragraph
-
- more code
-05_02__container_blocks__list_items__023: |2
- foo
-
- bar
-05_02__container_blocks__list_items__024: |
- - foo
-
- bar
-05_02__container_blocks__list_items__025: |
- - foo
-
- bar
-05_02__container_blocks__list_items__026: |
- -
- foo
- -
- ```
- bar
- ```
- -
- baz
-05_02__container_blocks__list_items__027: "- \n foo\n"
-05_02__container_blocks__list_items__028: |
- -
-
- foo
-05_02__container_blocks__list_items__029: |
- - foo
- -
- - bar
-05_02__container_blocks__list_items__030: "- foo\n- \n- bar\n"
-05_02__container_blocks__list_items__031: |
- 1. foo
- 2.
- 3. bar
-05_02__container_blocks__list_items__032: |
- *
-05_02__container_blocks__list_items__033: |
- foo
- *
-
- foo
- 1.
-05_02__container_blocks__list_items__034: |2
- 1. A paragraph
- with two lines.
-
- indented code
-
- > A block quote.
-05_02__container_blocks__list_items__035: |2
- 1. A paragraph
- with two lines.
-
- indented code
-
- > A block quote.
-05_02__container_blocks__list_items__036: |2
- 1. A paragraph
- with two lines.
-
- indented code
-
- > A block quote.
-05_02__container_blocks__list_items__037: |2
- 1. A paragraph
- with two lines.
-
- indented code
-
- > A block quote.
-05_02__container_blocks__list_items__038: |2
- 1. A paragraph
- with two lines.
-
- indented code
-
- > A block quote.
-05_02__container_blocks__list_items__039: |2
- 1. A paragraph
- with two lines.
-05_02__container_blocks__list_items__040: |
- > 1. > Blockquote
- continued here.
-05_02__container_blocks__list_items__041: |
- > 1. > Blockquote
- > continued here.
-05_02__container_blocks__list_items__042: |
- - foo
- - bar
- - baz
- - boo
-05_02__container_blocks__list_items__043: |
- - foo
- - bar
- - baz
- - boo
-05_02__container_blocks__list_items__044: |
- 10) foo
- - bar
-05_02__container_blocks__list_items__045: |
- 10) foo
- - bar
-05_02__container_blocks__list_items__046: |
- - - foo
-05_02__container_blocks__list_items__047: |
- 1. - 2. foo
-05_02__container_blocks__list_items__048: |
- - # Foo
- - Bar
- ---
- baz
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__049: |
- - [ ] foo
- - [x] bar
- - [x] foo
- - [ ] bar
- - [x] baz
- - [ ] bim
- - foo
- - bar
- + baz
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__050: |
- 1. foo
- 2. bar
- 3) baz
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__051: |
- Foo
- - bar
- - baz
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__052: |
- 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__053: |
- 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__054: |
- - foo
-
- - bar
-
-
- - baz
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__055: |
- - foo
- - bar
- - baz
-
-
- bim
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__056: |
- - foo
- - bar
-
- <!-- -->
-
- - baz
- - bim
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__057: |
- - foo
-
- notcode
-
- - foo
-
- <!-- -->
-
- code
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__058: |
- - a
- - b
- - c
- - d
- - e
- - f
- - g
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__059: |
- 1. a
-
- 2. b
-
- 3. c
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__060: |
- - a
- - b
- - c
- - d
- - e
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__061: |
- 1. a
-
- 2. b
-
- 3. c
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__062: |
- - a
- - b
-
- - c
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__063: |
- * a
- *
-
- * c
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__064: |
- - a
- - b
-
- c
- - d
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__065: |
- - a
- - b
-
- [ref]: /url
- - d
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__066: |
- - a
- - ```
- b
-
-
- ```
- - c
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__067: |
- - a
- - b
-
- c
- - d
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__068: |
- * a
- > b
- >
- * c
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__069: |
- - a
- > b
- ```
- c
- ```
- - d
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__070: |
- - a
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__071: |
- - a
- - b
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__072: |
- 1. ```
- foo
- ```
-
- bar
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__073: |
- * foo
- * bar
-
- baz
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__074: |
- - a
- - b
- - c
-
- - d
- - e
- - f
-06_01__inlines__001: |
- `hi`lo`
-06_02__inlines__backslash_escapes__001: |
- \!\"\#\$\%\&\'\(\)\*\+\,\-\.\/\:\;\<\=\>\?\@\[\\\]\^\_\`\{\|\}\~
-06_02__inlines__backslash_escapes__002: "\\\t\\A\\a\\ \\3\\φ\\«\n"
-06_02__inlines__backslash_escapes__003: |
- \*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__004: |
- \\*emphasis*
-06_02__inlines__backslash_escapes__005: |
- foo\
- bar
-06_02__inlines__backslash_escapes__006: |
- `` \[\` ``
-06_02__inlines__backslash_escapes__007: |2
- \[\]
-06_02__inlines__backslash_escapes__008: |
- ~~~
- \[\]
- ~~~
-06_02__inlines__backslash_escapes__009: |
- <http://example.com?find=\*>
-06_02__inlines__backslash_escapes__010: |
- <a href="/bar\/)">
-06_02__inlines__backslash_escapes__011: |
- [foo](/bar\* "ti\*tle")
-06_02__inlines__backslash_escapes__012: |
- [foo]
-
- [foo]: /bar\* "ti\*tle"
-06_02__inlines__backslash_escapes__013: |
- ``` foo\+bar
- foo
- ```
-06_03__inlines__entity_and_numeric_character_references__001: |
- &nbsp; &amp; &copy; &AElig; &Dcaron;
- &frac34; &HilbertSpace; &DifferentialD;
- &ClockwiseContourIntegral; &ngE;
-06_03__inlines__entity_and_numeric_character_references__002: |
- &#35; &#1234; &#992; &#0;
-06_03__inlines__entity_and_numeric_character_references__003: |
- &#X22; &#XD06; &#xcab;
-06_03__inlines__entity_and_numeric_character_references__004: |
- &nbsp &x; &#; &#x;
- &#987654321;
- &#abcdef0;
- &ThisIsNotDefined; &hi?;
-06_03__inlines__entity_and_numeric_character_references__005: |
- &copy
-06_03__inlines__entity_and_numeric_character_references__006: |
- &MadeUpEntity;
-06_03__inlines__entity_and_numeric_character_references__007: |
- <a href="&ouml;&ouml;.html">
-06_03__inlines__entity_and_numeric_character_references__008: |
- [foo](/f&ouml;&ouml; "f&ouml;&ouml;")
-06_03__inlines__entity_and_numeric_character_references__009: |
- [foo]
-
- [foo]: /f&ouml;&ouml; "f&ouml;&ouml;"
-06_03__inlines__entity_and_numeric_character_references__010: |
- ``` f&ouml;&ouml;
- foo
- ```
-06_03__inlines__entity_and_numeric_character_references__011: |
- `f&ouml;&ouml;`
-06_03__inlines__entity_and_numeric_character_references__012: |2
- f&ouml;f&ouml;
-06_03__inlines__entity_and_numeric_character_references__013: |
- &#42;foo&#42;
- *foo*
-06_03__inlines__entity_and_numeric_character_references__014: |
- &#42; foo
-
- * foo
-06_03__inlines__entity_and_numeric_character_references__015: |
- foo&#10;&#10;bar
-06_03__inlines__entity_and_numeric_character_references__016: |
- &#9;foo
-06_03__inlines__entity_and_numeric_character_references__017: |
- [a](url &quot;tit&quot;)
-06_04__inlines__code_spans__001: |
- `foo`
-06_04__inlines__code_spans__002: |
- `` foo ` bar ``
-06_04__inlines__code_spans__003: |
- ` `` `
-06_04__inlines__code_spans__004: |
- ` `` `
-06_04__inlines__code_spans__005: |
- ` a`
-06_04__inlines__code_spans__006: |
- ` b `
-06_04__inlines__code_spans__007: |
- ` `
- ` `
-06_04__inlines__code_spans__008: "``\nfoo\nbar \nbaz\n``\n"
-06_04__inlines__code_spans__009: "``\nfoo \n``\n"
-06_04__inlines__code_spans__010: "`foo bar \nbaz`\n"
-06_04__inlines__code_spans__011: |
- `foo\`bar`
-06_04__inlines__code_spans__012: |
- ``foo`bar``
-06_04__inlines__code_spans__013: |
- ` foo `` bar `
-06_04__inlines__code_spans__014: |
- *foo`*`
-06_04__inlines__code_spans__015: |
- [not a `link](/foo`)
-06_04__inlines__code_spans__016: |
- `<a href="`">`
-06_04__inlines__code_spans__017: |
- <a href="`">`
-06_04__inlines__code_spans__018: |
- `<http://foo.bar.`baz>`
-06_04__inlines__code_spans__019: |
- <http://foo.bar.`baz>`
-06_04__inlines__code_spans__020: |
- ```foo``
-06_04__inlines__code_spans__021: |
- `foo
-06_04__inlines__code_spans__022: |
- `foo``bar``
-06_05__inlines__emphasis_and_strong_emphasis__001: |
- *foo bar*
-06_05__inlines__emphasis_and_strong_emphasis__002: |
- a * foo bar*
-06_05__inlines__emphasis_and_strong_emphasis__003: |
- a*"foo"*
-06_05__inlines__emphasis_and_strong_emphasis__004: |
- * a *
-06_05__inlines__emphasis_and_strong_emphasis__005: |
- foo*bar*
-06_05__inlines__emphasis_and_strong_emphasis__006: |
- 5*6*78
-06_05__inlines__emphasis_and_strong_emphasis__007: |
- _foo bar_
-06_05__inlines__emphasis_and_strong_emphasis__008: |
- _ foo bar_
-06_05__inlines__emphasis_and_strong_emphasis__009: |
- a_"foo"_
-06_05__inlines__emphasis_and_strong_emphasis__010: |
- foo_bar_
-06_05__inlines__emphasis_and_strong_emphasis__011: |
- 5_6_78
-06_05__inlines__emphasis_and_strong_emphasis__012: |
- пристаням_стремятся_
-06_05__inlines__emphasis_and_strong_emphasis__013: |
- aa_"bb"_cc
-06_05__inlines__emphasis_and_strong_emphasis__014: |
- foo-_(bar)_
-06_05__inlines__emphasis_and_strong_emphasis__015: |
- _foo*
-06_05__inlines__emphasis_and_strong_emphasis__016: |
- *foo bar *
-06_05__inlines__emphasis_and_strong_emphasis__017: |
- *foo bar
- *
-06_05__inlines__emphasis_and_strong_emphasis__018: |
- *(*foo)
-06_05__inlines__emphasis_and_strong_emphasis__019: |
- *(*foo*)*
-06_05__inlines__emphasis_and_strong_emphasis__020: |
- *foo*bar
-06_05__inlines__emphasis_and_strong_emphasis__021: |
- _foo bar _
-06_05__inlines__emphasis_and_strong_emphasis__022: |
- _(_foo)
-06_05__inlines__emphasis_and_strong_emphasis__023: |
- _(_foo_)_
-06_05__inlines__emphasis_and_strong_emphasis__024: |
- _foo_bar
-06_05__inlines__emphasis_and_strong_emphasis__025: |
- _пристаням_стремятся
-06_05__inlines__emphasis_and_strong_emphasis__026: |
- _foo_bar_baz_
-06_05__inlines__emphasis_and_strong_emphasis__027: |
- _(bar)_.
-06_05__inlines__emphasis_and_strong_emphasis__028: |
- **foo bar**
-06_05__inlines__emphasis_and_strong_emphasis__029: |
- ** foo bar**
-06_05__inlines__emphasis_and_strong_emphasis__030: |
- a**"foo"**
-06_05__inlines__emphasis_and_strong_emphasis__031: |
- foo**bar**
-06_05__inlines__emphasis_and_strong_emphasis__032: |
- __foo bar__
-06_05__inlines__emphasis_and_strong_emphasis__033: |
- __ foo bar__
-06_05__inlines__emphasis_and_strong_emphasis__034: |
- __
- foo bar__
-06_05__inlines__emphasis_and_strong_emphasis__035: |
- a__"foo"__
-06_05__inlines__emphasis_and_strong_emphasis__036: |
- foo__bar__
-06_05__inlines__emphasis_and_strong_emphasis__037: |
- 5__6__78
-06_05__inlines__emphasis_and_strong_emphasis__038: |
- пристаням__стремятся__
-06_05__inlines__emphasis_and_strong_emphasis__039: |
- __foo, __bar__, baz__
-06_05__inlines__emphasis_and_strong_emphasis__040: |
- foo-__(bar)__
-06_05__inlines__emphasis_and_strong_emphasis__041: |
- **foo bar **
-06_05__inlines__emphasis_and_strong_emphasis__042: |
- **(**foo)
-06_05__inlines__emphasis_and_strong_emphasis__043: |
- *(**foo**)*
-06_05__inlines__emphasis_and_strong_emphasis__044: |
- **Gomphocarpus (*Gomphocarpus physocarpus*, syn.
- *Asclepias physocarpa*)**
-06_05__inlines__emphasis_and_strong_emphasis__045: |
- **foo "*bar*" foo**
-06_05__inlines__emphasis_and_strong_emphasis__046: |
- **foo**bar
-06_05__inlines__emphasis_and_strong_emphasis__047: |
- __foo bar __
-06_05__inlines__emphasis_and_strong_emphasis__048: |
- __(__foo)
-06_05__inlines__emphasis_and_strong_emphasis__049: |
- _(__foo__)_
-06_05__inlines__emphasis_and_strong_emphasis__050: |
- __foo__bar
-06_05__inlines__emphasis_and_strong_emphasis__051: |
- __пристаням__стремятся
-06_05__inlines__emphasis_and_strong_emphasis__052: |
- __foo__bar__baz__
-06_05__inlines__emphasis_and_strong_emphasis__053: |
- __(bar)__.
-06_05__inlines__emphasis_and_strong_emphasis__054: |
- *foo [bar](/url)*
-06_05__inlines__emphasis_and_strong_emphasis__055: |
- *foo
- bar*
-06_05__inlines__emphasis_and_strong_emphasis__056: |
- _foo __bar__ baz_
-06_05__inlines__emphasis_and_strong_emphasis__057: |
- _foo _bar_ baz_
-06_05__inlines__emphasis_and_strong_emphasis__058: |
- __foo_ bar_
-06_05__inlines__emphasis_and_strong_emphasis__059: |
- *foo *bar**
-06_05__inlines__emphasis_and_strong_emphasis__060: |
- *foo **bar** baz*
-06_05__inlines__emphasis_and_strong_emphasis__061: |
- *foo**bar**baz*
-06_05__inlines__emphasis_and_strong_emphasis__062: |
- *foo**bar*
-06_05__inlines__emphasis_and_strong_emphasis__063: |
- ***foo** bar*
-06_05__inlines__emphasis_and_strong_emphasis__064: |
- *foo **bar***
-06_05__inlines__emphasis_and_strong_emphasis__065: |
- *foo**bar***
-06_05__inlines__emphasis_and_strong_emphasis__066: |
- foo***bar***baz
-06_05__inlines__emphasis_and_strong_emphasis__067: |
- foo******bar*********baz
-06_05__inlines__emphasis_and_strong_emphasis__068: |
- *foo **bar *baz* bim** bop*
-06_05__inlines__emphasis_and_strong_emphasis__069: |
- *foo [*bar*](/url)*
-06_05__inlines__emphasis_and_strong_emphasis__070: |
- ** is not an empty emphasis
-06_05__inlines__emphasis_and_strong_emphasis__071: |
- **** is not an empty strong emphasis
-06_05__inlines__emphasis_and_strong_emphasis__072: |
- **foo [bar](/url)**
-06_05__inlines__emphasis_and_strong_emphasis__073: |
- **foo
- bar**
-06_05__inlines__emphasis_and_strong_emphasis__074: |
- __foo _bar_ baz__
-06_05__inlines__emphasis_and_strong_emphasis__075: |
- __foo __bar__ baz__
-06_05__inlines__emphasis_and_strong_emphasis__076: |
- ____foo__ bar__
-06_05__inlines__emphasis_and_strong_emphasis__077: |
- **foo **bar****
-06_05__inlines__emphasis_and_strong_emphasis__078: |
- **foo *bar* baz**
-06_05__inlines__emphasis_and_strong_emphasis__079: |
- **foo*bar*baz**
-06_05__inlines__emphasis_and_strong_emphasis__080: |
- ***foo* bar**
-06_05__inlines__emphasis_and_strong_emphasis__081: |
- **foo *bar***
-06_05__inlines__emphasis_and_strong_emphasis__082: |
- **foo *bar **baz**
- bim* bop**
-06_05__inlines__emphasis_and_strong_emphasis__083: |
- **foo [*bar*](/url)**
-06_05__inlines__emphasis_and_strong_emphasis__084: |
- __ is not an empty emphasis
-06_05__inlines__emphasis_and_strong_emphasis__085: |
- ____ is not an empty strong emphasis
-06_05__inlines__emphasis_and_strong_emphasis__086: |
- foo ***
-06_05__inlines__emphasis_and_strong_emphasis__087: |
- foo *\**
-06_05__inlines__emphasis_and_strong_emphasis__088: |
- foo *_*
-06_05__inlines__emphasis_and_strong_emphasis__089: |
- foo *****
-06_05__inlines__emphasis_and_strong_emphasis__090: |
- foo **\***
-06_05__inlines__emphasis_and_strong_emphasis__091: |
- foo **_**
-06_05__inlines__emphasis_and_strong_emphasis__092: |
- **foo*
-06_05__inlines__emphasis_and_strong_emphasis__093: |
- *foo**
-06_05__inlines__emphasis_and_strong_emphasis__094: |
- ***foo**
-06_05__inlines__emphasis_and_strong_emphasis__095: |
- ****foo*
-06_05__inlines__emphasis_and_strong_emphasis__096: |
- **foo***
-06_05__inlines__emphasis_and_strong_emphasis__097: |
- *foo****
-06_05__inlines__emphasis_and_strong_emphasis__098: |
- foo ___
-06_05__inlines__emphasis_and_strong_emphasis__099: |
- 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__001: |
- ~~Hi~~ Hello, world!
-06_06__inlines__strikethrough_extension__002: |
- This ~~has a
-
- new paragraph~~.
-06_07__inlines__links__001: |
- [link](/uri "title")
-06_07__inlines__links__002: |
- [link](/uri)
-06_07__inlines__links__003: |
- [link]()
-06_07__inlines__links__004: |
- [link](<>)
-06_07__inlines__links__005: |
- [link](/my uri)
-06_07__inlines__links__006: |
- [link](</my uri>)
-06_07__inlines__links__007: |
- [link](foo
- bar)
-06_07__inlines__links__008: |
- [link](<foo
- bar>)
-06_07__inlines__links__009: |
- [a](<b)c>)
-06_07__inlines__links__010: |
- [link](<foo\>)
-06_07__inlines__links__011: |
- [a](<b)c
- [a](<b)c>
- [a](<b>c)
-06_07__inlines__links__012: |
- [link](\(foo\))
-06_07__inlines__links__013: |
- [link](foo(and(bar)))
-06_07__inlines__links__014: |
- [link](foo\(and\(bar\))
-06_07__inlines__links__015: |
- [link](<foo(and(bar)>)
-06_07__inlines__links__016: |
- [link](foo\)\:)
-06_07__inlines__links__017: |
- [link](#fragment)
-
- [link](http://example.com#fragment)
-
- [link](http://example.com?foo=3#frag)
-06_07__inlines__links__018: |
- [link](foo\bar)
-06_07__inlines__links__019: |
- [link](foo%20b&auml;)
-06_07__inlines__links__020: |
- [link]("title")
-06_07__inlines__links__021: |
- [link](/url "title")
- [link](/url 'title')
- [link](/url (title))
-06_07__inlines__links__022: |
- [link](/url "title \"&quot;")
-06_07__inlines__links__023: |
- [link](/url "title")
-06_07__inlines__links__024: |
- [link](/url "title "and" title")
-06_07__inlines__links__025: |
- [link](/url 'title "and" title')
-06_07__inlines__links__026: |
- [link]( /uri
- "title" )
-06_07__inlines__links__027: |
- [link] (/uri)
-06_07__inlines__links__028: |
- [link [foo [bar]]](/uri)
-06_07__inlines__links__029: |
- [link] bar](/uri)
-06_07__inlines__links__030: |
- [link [bar](/uri)
-06_07__inlines__links__031: |
- [link \[bar](/uri)
-06_07__inlines__links__032: |
- [link *foo **bar** `#`*](/uri)
-06_07__inlines__links__033: |
- [![moon](moon.jpg)](/uri)
-06_07__inlines__links__034: |
- [foo [bar](/uri)](/uri)
-06_07__inlines__links__035: |
- [foo *[bar [baz](/uri)](/uri)*](/uri)
-06_07__inlines__links__036: |
- ![[[foo](uri1)](uri2)](uri3)
-06_07__inlines__links__037: |
- *[foo*](/uri)
-06_07__inlines__links__038: |
- [foo *bar](baz*)
-06_07__inlines__links__039: |
- *foo [bar* baz]
-06_07__inlines__links__040: |
- [foo <bar attr="](baz)">
-06_07__inlines__links__041: |
- [foo`](/uri)`
-06_07__inlines__links__042: |
- [foo<http://example.com/?search=](uri)>
-06_07__inlines__links__043: |
- [foo][bar]
-
- [bar]: /url "title"
-06_07__inlines__links__044: |
- [link [foo [bar]]][ref]
-
- [ref]: /uri
-06_07__inlines__links__045: |
- [link \[bar][ref]
-
- [ref]: /uri
-06_07__inlines__links__046: |
- [link *foo **bar** `#`*][ref]
-
- [ref]: /uri
-06_07__inlines__links__047: |
- [![moon](moon.jpg)][ref]
-
- [ref]: /uri
-06_07__inlines__links__048: |
- [foo [bar](/uri)][ref]
-
- [ref]: /uri
-06_07__inlines__links__049: |
- [foo *bar [baz][ref]*][ref]
-
- [ref]: /uri
-06_07__inlines__links__050: |
- *[foo*][ref]
-
- [ref]: /uri
-06_07__inlines__links__051: |
- [foo *bar][ref]
-
- [ref]: /uri
-06_07__inlines__links__052: |
- [foo <bar attr="][ref]">
-
- [ref]: /uri
-06_07__inlines__links__053: |
- [foo`][ref]`
-
- [ref]: /uri
-06_07__inlines__links__054: |
- [foo<http://example.com/?search=][ref]>
-
- [ref]: /uri
-06_07__inlines__links__055: |
- [foo][BaR]
-
- [bar]: /url "title"
-06_07__inlines__links__056: |
- [Толпой][Толпой] is a Russian word.
-
- [ТОЛПОЙ]: /url
-06_07__inlines__links__057: |
- [Foo
- bar]: /url
-
- [Baz][Foo bar]
-06_07__inlines__links__058: |
- [foo] [bar]
-
- [bar]: /url "title"
-06_07__inlines__links__059: |
- [foo]
- [bar]
-
- [bar]: /url "title"
-06_07__inlines__links__060: |
- [foo]: /url1
-
- [foo]: /url2
-
- [bar][foo]
-06_07__inlines__links__061: |
- [bar][foo\!]
-
- [foo!]: /url
-06_07__inlines__links__062: |
- [foo][ref[]
-
- [ref[]: /uri
-06_07__inlines__links__063: |
- [foo][ref[bar]]
-
- [ref[bar]]: /uri
-06_07__inlines__links__064: |
- [[[foo]]]
-
- [[[foo]]]: /url
-06_07__inlines__links__065: |
- [foo][ref\[]
-
- [ref\[]: /uri
-06_07__inlines__links__066: |
- [bar\\]: /uri
-
- [bar\\]
-06_07__inlines__links__067: |
- []
-
- []: /uri
-06_07__inlines__links__068: |
- [
- ]
-
- [
- ]: /uri
-06_07__inlines__links__069: |
- [foo][]
-
- [foo]: /url "title"
-06_07__inlines__links__070: |
- [*foo* bar][]
-
- [*foo* bar]: /url "title"
-06_07__inlines__links__071: |
- [Foo][]
-
- [foo]: /url "title"
-06_07__inlines__links__072: "[foo] \n[]\n\n[foo]: /url \"title\"\n"
-06_07__inlines__links__073: |
- [foo]
-
- [foo]: /url "title"
-06_07__inlines__links__074: |
- [*foo* bar]
-
- [*foo* bar]: /url "title"
-06_07__inlines__links__075: |
- [[*foo* bar]]
-
- [*foo* bar]: /url "title"
-06_07__inlines__links__076: |
- [[bar [foo]
-
- [foo]: /url
-06_07__inlines__links__077: |
- [Foo]
-
- [foo]: /url "title"
-06_07__inlines__links__078: |
- [foo] bar
-
- [foo]: /url
-06_07__inlines__links__079: |
- \[foo]
-
- [foo]: /url "title"
-06_07__inlines__links__080: |
- [foo*]: /url
-
- *[foo*]
-06_07__inlines__links__081: |
- [foo][bar]
-
- [foo]: /url1
- [bar]: /url2
-06_07__inlines__links__082: |
- [foo][]
-
- [foo]: /url1
-06_07__inlines__links__083: |
- [foo]()
-
- [foo]: /url1
-06_07__inlines__links__084: |
- [foo](not a link)
-
- [foo]: /url1
-06_07__inlines__links__085: |
- [foo][bar][baz]
-
- [baz]: /url
-06_07__inlines__links__086: |
- [foo][bar][baz]
-
- [baz]: /url1
- [bar]: /url2
-06_07__inlines__links__087: |
- [foo][bar][baz]
-
- [baz]: /url1
- [foo]: /url2
-06_08__inlines__images__001: |
- ![foo](/url "title")
-06_08__inlines__images__002: |
- ![foo *bar*]
-
- [foo *bar*]: train.jpg "train & tracks"
-06_08__inlines__images__003: |
- ![foo ![bar](/url)](/url2)
-06_08__inlines__images__004: |
- ![foo [bar](/url)](/url2)
-06_08__inlines__images__005: |
- ![foo *bar*][]
-
- [foo *bar*]: train.jpg "train & tracks"
-06_08__inlines__images__006: |
- ![foo *bar*][foobar]
-
- [FOOBAR]: train.jpg "train & tracks"
-06_08__inlines__images__007: |
- ![foo](train.jpg)
-06_08__inlines__images__008: |
- My ![foo bar](/path/to/train.jpg "title" )
-06_08__inlines__images__009: |
- ![foo](<url>)
-06_08__inlines__images__010: |
- ![](/url)
-06_08__inlines__images__011: |
- ![foo][bar]
-
- [bar]: /url
-06_08__inlines__images__012: |
- ![foo][bar]
-
- [BAR]: /url
-06_08__inlines__images__013: |
- ![foo][]
-
- [foo]: /url "title"
-06_08__inlines__images__014: |
- ![*foo* bar][]
-
- [*foo* bar]: /url "title"
-06_08__inlines__images__015: |
- ![Foo][]
-
- [foo]: /url "title"
-06_08__inlines__images__016: "![foo] \n[]\n\n[foo]: /url \"title\"\n"
-06_08__inlines__images__017: |
- ![foo]
-
- [foo]: /url "title"
-06_08__inlines__images__018: |
- ![*foo* bar]
-
- [*foo* bar]: /url "title"
-06_08__inlines__images__019: |
- ![[foo]]
-
- [[foo]]: /url "title"
-06_08__inlines__images__020: |
- ![Foo]
-
- [foo]: /url "title"
-06_08__inlines__images__021: |
- !\[foo]
-
- [foo]: /url "title"
-06_08__inlines__images__022: |
- \![foo]
-
- [foo]: /url "title"
-06_09__inlines__autolinks__001: |
- <http://foo.bar.baz>
-06_09__inlines__autolinks__002: |
- <http://foo.bar.baz/test?q=hello&id=22&boolean>
-06_09__inlines__autolinks__003: |
- <irc://foo.bar:2233/baz>
-06_09__inlines__autolinks__004: |
- <MAILTO:FOO@BAR.BAZ>
-06_09__inlines__autolinks__005: |
- <a+b+c:d>
-06_09__inlines__autolinks__006: |
- <made-up-scheme://foo,bar>
-06_09__inlines__autolinks__007: |
- <http://../>
-06_09__inlines__autolinks__008: |
- <localhost:5001/foo>
-06_09__inlines__autolinks__009: |
- <http://foo.bar/baz bim>
-06_09__inlines__autolinks__010: |
- <http://example.com/\[\>
-06_09__inlines__autolinks__011: |
- <foo@bar.example.com>
-06_09__inlines__autolinks__012: |
- <foo+special@Bar.baz-bar0.com>
-06_09__inlines__autolinks__013: |
- <foo\+@bar.example.com>
-06_09__inlines__autolinks__014: |
- <>
-06_09__inlines__autolinks__015: |
- < http://foo.bar >
-06_09__inlines__autolinks__016: |
- <m:abc>
-06_09__inlines__autolinks__017: |
- <foo.bar.baz>
-06_09__inlines__autolinks__018: |
- http://example.com
-06_09__inlines__autolinks__019: |
- foo@bar.example.com
-06_10__inlines__autolinks_extension__001: |
- www.commonmark.org
-06_10__inlines__autolinks_extension__002: |
- Visit www.commonmark.org/help for more information.
-06_10__inlines__autolinks_extension__003: |
- Visit www.commonmark.org.
-
- Visit www.commonmark.org/a.b.
-06_10__inlines__autolinks_extension__004: |
- 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__005: |
- www.google.com/search?q=(business))+ok
-06_10__inlines__autolinks_extension__006: |
- www.google.com/search?q=commonmark&hl=en
-
- www.google.com/search?q=commonmark&hl;
-06_10__inlines__autolinks_extension__007: |
- www.commonmark.org/he<lp
-06_10__inlines__autolinks_extension__008: |
- 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__009: |
- foo@bar.baz
-06_10__inlines__autolinks_extension__010: |
- hello@mail+xyz.example isn't valid, but hello+xyz@mail.example is.
-06_10__inlines__autolinks_extension__011: |
- 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__001: |
- <a><bab><c2c>
-06_11__inlines__raw_html__002: |
- <a/><b2/>
-06_11__inlines__raw_html__003: |
- <a /><b2
- data="foo" >
-06_11__inlines__raw_html__004: |
- <a foo="bar" bam = 'baz <em>"</em>'
- _boolean zoop:33=zoop:33 />
-06_11__inlines__raw_html__005: |
- Foo <responsive-image src="foo.jpg" />
-06_11__inlines__raw_html__006: |
- <33> <__>
-06_11__inlines__raw_html__007: |
- <a h*#ref="hi">
-06_11__inlines__raw_html__008: |
- <a href="hi'> <a href=hi'>
-06_11__inlines__raw_html__009: |
- < a><
- foo><bar/ >
- <foo bar=baz
- bim!bop />
-06_11__inlines__raw_html__010: |
- <a href='bar'title=title>
-06_11__inlines__raw_html__011: |
- </a></foo >
-06_11__inlines__raw_html__012: |
- </a href="foo">
-06_11__inlines__raw_html__013: |
- foo <!-- this is a
- comment - with hyphen -->
-06_11__inlines__raw_html__014: |
- foo <!-- not a comment -- two hyphens -->
-06_11__inlines__raw_html__015: |
- foo <!--> foo -->
-
- foo <!-- foo--->
-06_11__inlines__raw_html__016: |
- foo <?php echo $a; ?>
-06_11__inlines__raw_html__017: |
- foo <!ELEMENT br EMPTY>
-06_11__inlines__raw_html__018: |
- foo <![CDATA[>&<]]>
-06_11__inlines__raw_html__019: |
- foo <a href="&ouml;">
-06_11__inlines__raw_html__020: |
- foo <a href="\*">
-06_11__inlines__raw_html__021: |
- <a href="\"">
-06_12__inlines__disallowed_raw_html_extension__001: |
- <strong> <title> <style> <em>
-
- <blockquote>
- <xmp> is disallowed. <XMP> is also disallowed.
- </blockquote>
-06_13__inlines__hard_line_breaks__001: "foo \nbaz\n"
-06_13__inlines__hard_line_breaks__002: |
- foo\
- baz
-06_13__inlines__hard_line_breaks__003: "foo \nbaz\n"
-06_13__inlines__hard_line_breaks__004: "foo \n bar\n"
-06_13__inlines__hard_line_breaks__005: |
- foo\
- bar
-06_13__inlines__hard_line_breaks__006: "*foo \nbar*\n"
-06_13__inlines__hard_line_breaks__007: |
- *foo\
- bar*
-06_13__inlines__hard_line_breaks__008: "`code \nspan`\n"
-06_13__inlines__hard_line_breaks__009: |
- `code\
- span`
-06_13__inlines__hard_line_breaks__010: "<a href=\"foo \nbar\">\n"
-06_13__inlines__hard_line_breaks__011: |
- <a href="foo\
- bar">
-06_13__inlines__hard_line_breaks__012: |
- foo\
-06_13__inlines__hard_line_breaks__013: "foo \n"
-06_13__inlines__hard_line_breaks__014: |
- ### foo\
-06_13__inlines__hard_line_breaks__015: "### foo \n"
-06_14__inlines__soft_line_breaks__001: |
- foo
- baz
-06_14__inlines__soft_line_breaks__002: "foo \n baz\n"
-06_15__inlines__textual_content__001: |
- hello $.;'there
-06_15__inlines__textual_content__002: |
- Foo χρῆν
-06_15__inlines__textual_content__003: |
- Multiple spaces
-07_01__gitlab_specific_markdown__footnotes__001: |
- footnote reference tag [^1]
-
- [^1]: footnote text
diff --git a/spec/fixtures/glfm/example_snapshots/prosemirror_json.yml b/spec/fixtures/glfm/example_snapshots/prosemirror_json.yml
deleted file mode 100644
index 04196c26af0..00000000000
--- a/spec/fixtures/glfm/example_snapshots/prosemirror_json.yml
+++ /dev/null
@@ -1,17018 +0,0 @@
----
-02_01__preliminaries__tabs__001: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "foo\tbaz\t\tbim"
- }
- ]
- }
- ]
- }
-02_01__preliminaries__tabs__002: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "foo\tbaz\t\tbim"
- }
- ]
- }
- ]
- }
-02_01__preliminaries__tabs__003: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "a\ta\nὐ\ta"
- }
- ]
- }
- ]
- }
-02_01__preliminaries__tabs__004: |-
- {
- "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__005: |-
- {
- "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__006: |-
- {
- "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__007: |-
- {
- "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__008: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "foo\nbar"
- }
- ]
- }
- ]
- }
-02_01__preliminaries__tabs__009: |-
- {
- "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": "bulletList",
- "attrs": {
- "bullet": "*"
- },
- "content": [
- {
- "type": "listItem",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "baz"
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
-02_01__preliminaries__tabs__010: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "heading",
- "attrs": {
- "level": 1
- },
- "content": [
- {
- "type": "text",
- "text": "Foo"
- }
- ]
- }
- ]
- }
-02_01__preliminaries__tabs__011: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "horizontalRule"
- }
- ]
- }
-03_01__blocks_and_inlines__precedence__001: |-
- {
- "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__001: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "horizontalRule"
- },
- {
- "type": "horizontalRule"
- },
- {
- "type": "horizontalRule"
- }
- ]
- }
-04_01__leaf_blocks__thematic_breaks__002: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "+++"
- }
- ]
- }
- ]
- }
-04_01__leaf_blocks__thematic_breaks__003: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "==="
- }
- ]
- }
- ]
- }
-04_01__leaf_blocks__thematic_breaks__004: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "--\n**\n__"
- }
- ]
- }
- ]
- }
-04_01__leaf_blocks__thematic_breaks__005: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "horizontalRule"
- },
- {
- "type": "horizontalRule"
- },
- {
- "type": "horizontalRule"
- }
- ]
- }
-04_01__leaf_blocks__thematic_breaks__006: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "***"
- }
- ]
- }
- ]
- }
-04_01__leaf_blocks__thematic_breaks__007: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "Foo\n***"
- }
- ]
- }
- ]
- }
-04_01__leaf_blocks__thematic_breaks__008: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "horizontalRule"
- }
- ]
- }
-04_01__leaf_blocks__thematic_breaks__009: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "horizontalRule"
- }
- ]
- }
-04_01__leaf_blocks__thematic_breaks__010: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "horizontalRule"
- }
- ]
- }
-04_01__leaf_blocks__thematic_breaks__011: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "horizontalRule"
- }
- ]
- }
-04_01__leaf_blocks__thematic_breaks__012: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "horizontalRule"
- }
- ]
- }
-04_01__leaf_blocks__thematic_breaks__013: |-
- {
- "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__014: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "-"
- }
- ]
- }
- ]
- }
-04_01__leaf_blocks__thematic_breaks__015: |-
- {
- "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__016: |-
- {
- "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__017: |-
- {
- "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__018: |-
- {
- "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__019: |-
- {
- "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__001: |-
- {
- "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__002: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "####### foo"
- }
- ]
- }
- ]
- }
-04_02__leaf_blocks__atx_headings__003: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "#5 bolt"
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "#hashtag"
- }
- ]
- }
- ]
- }
-04_02__leaf_blocks__atx_headings__004: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "## foo"
- }
- ]
- }
- ]
- }
-04_02__leaf_blocks__atx_headings__005: |-
- {
- "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__006: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "heading",
- "attrs": {
- "level": 1
- },
- "content": [
- {
- "type": "text",
- "text": "foo"
- }
- ]
- }
- ]
- }
-04_02__leaf_blocks__atx_headings__007: |-
- {
- "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__008: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "# foo"
- }
- ]
- }
- ]
- }
-04_02__leaf_blocks__atx_headings__009: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo\n# bar"
- }
- ]
- }
- ]
- }
-04_02__leaf_blocks__atx_headings__010: |-
- {
- "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__011: |-
- {
- "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__012: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "heading",
- "attrs": {
- "level": 3
- },
- "content": [
- {
- "type": "text",
- "text": "foo"
- }
- ]
- }
- ]
- }
-04_02__leaf_blocks__atx_headings__013: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "heading",
- "attrs": {
- "level": 3
- },
- "content": [
- {
- "type": "text",
- "text": "foo ### b"
- }
- ]
- }
- ]
- }
-04_02__leaf_blocks__atx_headings__014: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "heading",
- "attrs": {
- "level": 1
- },
- "content": [
- {
- "type": "text",
- "text": "foo#"
- }
- ]
- }
- ]
- }
-04_02__leaf_blocks__atx_headings__015: |-
- {
- "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__016: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "horizontalRule"
- },
- {
- "type": "heading",
- "attrs": {
- "level": 2
- },
- "content": [
- {
- "type": "text",
- "text": "foo"
- }
- ]
- },
- {
- "type": "horizontalRule"
- }
- ]
- }
-04_02__leaf_blocks__atx_headings__017: |-
- {
- "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__018: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "heading",
- "attrs": {
- "level": 2
- }
- },
- {
- "type": "heading",
- "attrs": {
- "level": 1
- }
- },
- {
- "type": "heading",
- "attrs": {
- "level": 3
- }
- }
- ]
- }
-04_03__leaf_blocks__setext_headings__001: |-
- {
- "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__002: |-
- {
- "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__003: |-
- {
- "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__004: |-
- {
- "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__005: |-
- {
- "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__006: |-
- {
- "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__007: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "heading",
- "attrs": {
- "level": 2
- },
- "content": [
- {
- "type": "text",
- "text": "Foo"
- }
- ]
- }
- ]
- }
-04_03__leaf_blocks__setext_headings__008: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "Foo\n---"
- }
- ]
- }
- ]
- }
-04_03__leaf_blocks__setext_headings__009: |-
- {
- "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__010: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "heading",
- "attrs": {
- "level": 2
- },
- "content": [
- {
- "type": "text",
- "text": "Foo"
- }
- ]
- }
- ]
- }
-04_03__leaf_blocks__setext_headings__011: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "heading",
- "attrs": {
- "level": 2
- },
- "content": [
- {
- "type": "text",
- "text": "Foo\\"
- }
- ]
- }
- ]
- }
-04_03__leaf_blocks__setext_headings__012: |-
- {
- "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__013: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "blockquote",
- "attrs": {
- "multiline": false
- },
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "Foo"
- }
- ]
- }
- ]
- },
- {
- "type": "horizontalRule"
- }
- ]
- }
-04_03__leaf_blocks__setext_headings__014: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "blockquote",
- "attrs": {
- "multiline": false
- },
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo\nbar\n==="
- }
- ]
- }
- ]
- }
- ]
- }
-04_03__leaf_blocks__setext_headings__015: |-
- {
- "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__016: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "heading",
- "attrs": {
- "level": 2
- },
- "content": [
- {
- "type": "text",
- "text": "Foo\nBar"
- }
- ]
- }
- ]
- }
-04_03__leaf_blocks__setext_headings__017: |-
- {
- "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__018: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "===="
- }
- ]
- }
- ]
- }
-04_03__leaf_blocks__setext_headings__019: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "horizontalRule"
- },
- {
- "type": "horizontalRule"
- }
- ]
- }
-04_03__leaf_blocks__setext_headings__020: |-
- {
- "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__021: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "foo"
- }
- ]
- },
- {
- "type": "horizontalRule"
- }
- ]
- }
-04_03__leaf_blocks__setext_headings__022: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "blockquote",
- "attrs": {
- "multiline": false
- },
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo"
- }
- ]
- }
- ]
- },
- {
- "type": "horizontalRule"
- }
- ]
- }
-04_03__leaf_blocks__setext_headings__023: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "heading",
- "attrs": {
- "level": 2
- },
- "content": [
- {
- "type": "text",
- "text": "> foo"
- }
- ]
- }
- ]
- }
-04_03__leaf_blocks__setext_headings__024: |-
- {
- "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__025: |-
- {
- "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__026: |-
- {
- "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__027: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "Foo\nbar\n---\nbaz"
- }
- ]
- }
- ]
- }
-04_04__leaf_blocks__indented_code_blocks__001: |-
- {
- "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__002: |-
- {
- "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__003: |-
- {
- "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__004: |-
- {
- "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__005: |-
- {
- "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__006: |-
- {
- "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__007: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "Foo\nbar"
- }
- ]
- }
- ]
- }
-04_04__leaf_blocks__indented_code_blocks__008: |-
- {
- "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__009: |-
- {
- "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__010: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": " foo\nbar"
- }
- ]
- }
- ]
- }
-04_04__leaf_blocks__indented_code_blocks__011: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "foo"
- }
- ]
- }
- ]
- }
-04_04__leaf_blocks__indented_code_blocks__012: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "foo "
- }
- ]
- }
- ]
- }
-04_05__leaf_blocks__fenced_code_blocks__001: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "<\n >"
- }
- ]
- }
- ]
- }
-04_05__leaf_blocks__fenced_code_blocks__002: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "<\n >"
- }
- ]
- }
- ]
- }
-04_05__leaf_blocks__fenced_code_blocks__003: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-04_05__leaf_blocks__fenced_code_blocks__004: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "aaa\n~~~"
- }
- ]
- }
- ]
- }
-04_05__leaf_blocks__fenced_code_blocks__005: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "aaa\n```"
- }
- ]
- }
- ]
- }
-04_05__leaf_blocks__fenced_code_blocks__006: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "aaa\n```"
- }
- ]
- }
- ]
- }
-04_05__leaf_blocks__fenced_code_blocks__007: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "aaa\n~~~"
- }
- ]
- }
- ]
- }
-04_05__leaf_blocks__fenced_code_blocks__008: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- }
- }
- ]
- }
-04_05__leaf_blocks__fenced_code_blocks__009: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "\n```\naaa"
- }
- ]
- }
- ]
- }
-04_05__leaf_blocks__fenced_code_blocks__010: |-
- {
- "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__011: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "\n "
- }
- ]
- }
- ]
- }
-04_05__leaf_blocks__fenced_code_blocks__012: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- }
- }
- ]
- }
-04_05__leaf_blocks__fenced_code_blocks__013: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "aaa\naaa"
- }
- ]
- }
- ]
- }
-04_05__leaf_blocks__fenced_code_blocks__014: |-
- {
- "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__015: |-
- {
- "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__016: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "```\naaa\n```"
- }
- ]
- }
- ]
- }
-04_05__leaf_blocks__fenced_code_blocks__017: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "aaa"
- }
- ]
- }
- ]
- }
-04_05__leaf_blocks__fenced_code_blocks__018: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "aaa"
- }
- ]
- }
- ]
- }
-04_05__leaf_blocks__fenced_code_blocks__019: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "aaa\n ```"
- }
- ]
- }
- ]
- }
-04_05__leaf_blocks__fenced_code_blocks__020: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": "\naaa"
- }
- ]
- }
- ]
- }
-04_05__leaf_blocks__fenced_code_blocks__021: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "aaa\n~~~ ~~"
- }
- ]
- }
- ]
- }
-04_05__leaf_blocks__fenced_code_blocks__022: |-
- {
- "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__023: |-
- {
- "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__024: |-
- {
- "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__025: |-
- {
- "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__026: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": ";",
- "class": "code highlight"
- }
- }
- ]
- }
-04_05__leaf_blocks__fenced_code_blocks__027: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": "aa"
- },
- {
- "type": "text",
- "text": "\nfoo"
- }
- ]
- }
- ]
- }
-04_05__leaf_blocks__fenced_code_blocks__028: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": "aa",
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "foo"
- }
- ]
- }
- ]
- }
-04_05__leaf_blocks__fenced_code_blocks__029: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "``` aaa"
- }
- ]
- }
- ]
- }
-04_06__leaf_blocks__html_blocks__001: |-
- Error - check implementation:
- Hast node of type "table" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__002: |-
- Error - check implementation:
- Hast node of type "table" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__003: |-
- Error - check implementation:
- Hast node of type "div" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__004: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "\n*foo*"
- }
- ]
- }
- ]
- }
-04_06__leaf_blocks__html_blocks__005: |-
- Error - check implementation:
- Hast node of type "div" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__006: |-
- Error - check implementation:
- Hast node of type "div" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__007: |-
- Error - check implementation:
- Hast node of type "div" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__008: |-
- Error - check implementation:
- Hast node of type "div" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__009: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph"
- }
- ]
- }
-04_06__leaf_blocks__html_blocks__010: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph"
- }
- ]
- }
-04_06__leaf_blocks__html_blocks__011: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph"
- }
- ]
- }
-04_06__leaf_blocks__html_blocks__012: |-
- Error - check implementation:
- Hast node of type "div" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__013: |-
- Error - check implementation:
- Hast node of type "table" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__014: |-
- Error - check implementation:
- Hast node of type "div" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__015: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "foo",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "\n*bar*\n"
- }
- ]
- }
- ]
- }
-04_06__leaf_blocks__html_blocks__016: |-
- Error - check implementation:
- Hast node of type "warning" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__017: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "\n*bar*\n"
- }
- ]
- }
- ]
- }
-04_06__leaf_blocks__html_blocks__018: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "\n*bar*"
- }
- ]
- }
- ]
- }
-04_06__leaf_blocks__html_blocks__019: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "strike"
- }
- ],
- "text": "\n*foo*\n"
- }
- ]
- }
- ]
- }
-04_06__leaf_blocks__html_blocks__020: |-
- Error - check implementation:
- Cannot destructure property 'type' of 'this.stack.pop(...)' as it is undefined.
-04_06__leaf_blocks__html_blocks__021: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- },
- {
- "type": "strike"
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-04_06__leaf_blocks__html_blocks__022: |-
- {
- "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__023: |-
- Error - check implementation:
- Hast node of type "script" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__024: |-
- Error - check implementation:
- Hast node of type "style" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__025: |-
- Error - check implementation:
- Hast node of type "style" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__026: |-
- Error - check implementation:
- Hast node of type "div" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__027: |-
- Error - check implementation:
- Hast node of type "div" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__028: |-
- Error - check implementation:
- Hast node of type "style" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__029: |-
- Error - check implementation:
- Cannot destructure property 'className' of 'hastNode.properties' as it is undefined.
-04_06__leaf_blocks__html_blocks__030: |-
- Error - check implementation:
- Hast node of type "script" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__031: |-
- Error - check implementation:
- Cannot destructure property 'className' of 'hastNode.properties' as it is undefined.
-04_06__leaf_blocks__html_blocks__032: |-
- Error - check implementation:
- Cannot destructure property 'className' of 'hastNode.properties' as it is undefined.
-04_06__leaf_blocks__html_blocks__033: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph"
- }
- ]
- }
-04_06__leaf_blocks__html_blocks__034: |-
- Error - check implementation:
- Cannot destructure property 'className' of 'hastNode.properties' as it is undefined.
-04_06__leaf_blocks__html_blocks__035: |-
- Error - check implementation:
- Cannot destructure property 'className' of 'hastNode.properties' as it is undefined.
-04_06__leaf_blocks__html_blocks__036: |-
- Error - check implementation:
- Hast node of type "div" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__037: |-
- Error - check implementation:
- Hast node of type "div" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__038: |-
- Error - check implementation:
- Hast node of type "div" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__039: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "Foo\n"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "bar",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "\nbaz"
- }
- ]
- }
- ]
- }
-04_06__leaf_blocks__html_blocks__040: |-
- Error - check implementation:
- Hast node of type "div" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__041: |-
- Error - check implementation:
- Hast node of type "div" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__042: |-
- Error - check implementation:
- Hast node of type "table" not supported by this converter. Please, provide an specification.
-04_06__leaf_blocks__html_blocks__043: |-
- Error - check implementation:
- Hast node of type "table" not supported by this converter. Please, provide an specification.
-04_07__leaf_blocks__link_reference_definitions__001: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": "title",
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-04_07__leaf_blocks__link_reference_definitions__002: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": "the title",
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-04_07__leaf_blocks__link_reference_definitions__003: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "my_(url)",
- "target": "_blank",
- "class": null,
- "title": "title (with parens)",
- "canonicalSrc": null
- }
- }
- ],
- "text": "Foo*bar]"
- }
- ]
- }
- ]
- }
-04_07__leaf_blocks__link_reference_definitions__004: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "my%20url",
- "target": "_blank",
- "class": null,
- "title": "title",
- "canonicalSrc": null
- }
- }
- ],
- "text": "Foo bar"
- }
- ]
- }
- ]
- }
-04_07__leaf_blocks__link_reference_definitions__005: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": "\ntitle\nline1\nline2\n",
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-04_07__leaf_blocks__link_reference_definitions__006: |-
- {
- "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__007: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-04_07__leaf_blocks__link_reference_definitions__008: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[foo]:"
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[foo]"
- }
- ]
- }
- ]
- }
-04_07__leaf_blocks__link_reference_definitions__009: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-04_07__leaf_blocks__link_reference_definitions__010: |-
- Error - check implementation:
- Hast node of type "bar" not supported by this converter. Please, provide an specification.
-04_07__leaf_blocks__link_reference_definitions__011: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url%5Cbar*baz",
- "target": "_blank",
- "class": null,
- "title": "foo\"bar\\baz",
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-04_07__leaf_blocks__link_reference_definitions__012: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "url",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-04_07__leaf_blocks__link_reference_definitions__013: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "first",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-04_07__leaf_blocks__link_reference_definitions__014: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "Foo"
- }
- ]
- }
- ]
- }
-04_07__leaf_blocks__link_reference_definitions__015: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/%CF%86%CE%BF%CF%85",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "αγω"
- }
- ]
- }
- ]
- }
-04_07__leaf_blocks__link_reference_definitions__016: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph"
- }
- ]
- }
-04_07__leaf_blocks__link_reference_definitions__017: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "bar"
- }
- ]
- }
- ]
- }
-04_07__leaf_blocks__link_reference_definitions__018: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[foo]: /url \"title\" ok"
- }
- ]
- }
- ]
- }
-04_07__leaf_blocks__link_reference_definitions__019: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "\"title\" ok"
- }
- ]
- }
- ]
- }
-04_07__leaf_blocks__link_reference_definitions__020: |-
- {
- "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__021: |-
- {
- "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__022: |-
- {
- "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__023: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "heading",
- "attrs": {
- "level": 1
- },
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "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__024: |-
- {
- "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",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-04_07__leaf_blocks__link_reference_definitions__025: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "===\n"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-04_07__leaf_blocks__link_reference_definitions__026: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/foo-url",
- "target": "_blank",
- "class": null,
- "title": "foo",
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- },
- {
- "type": "text",
- "text": ",\n"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/bar-url",
- "target": "_blank",
- "class": null,
- "title": "bar",
- "canonicalSrc": null
- }
- }
- ],
- "text": "bar"
- },
- {
- "type": "text",
- "text": ",\n"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/baz-url",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "baz"
- }
- ]
- }
- ]
- }
-04_07__leaf_blocks__link_reference_definitions__027: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- },
- {
- "type": "blockquote",
- "attrs": {
- "multiline": false
- },
- "content": [
- {
- "type": "paragraph"
- }
- ]
- }
- ]
- }
-04_07__leaf_blocks__link_reference_definitions__028: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph"
- }
- ]
- }
-04_08__leaf_blocks__paragraphs__001: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "aaa"
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "bbb"
- }
- ]
- }
- ]
- }
-04_08__leaf_blocks__paragraphs__002: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "aaa\nbbb"
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "ccc\nddd"
- }
- ]
- }
- ]
- }
-04_08__leaf_blocks__paragraphs__003: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "aaa"
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "bbb"
- }
- ]
- }
- ]
- }
-04_08__leaf_blocks__paragraphs__004: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "aaa\nbbb"
- }
- ]
- }
- ]
- }
-04_08__leaf_blocks__paragraphs__005: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "aaa\nbbb\nccc"
- }
- ]
- }
- ]
- }
-04_08__leaf_blocks__paragraphs__006: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "aaa\nbbb"
- }
- ]
- }
- ]
- }
-04_08__leaf_blocks__paragraphs__007: |-
- {
- "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__008: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "aaa"
- },
- {
- "type": "hardBreak"
- },
- {
- "type": "text",
- "text": "\nbbb"
- }
- ]
- }
- ]
- }
-04_09__leaf_blocks__blank_lines__001: |-
- {
- "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__001: |-
- Error - check implementation:
- Hast node of type "table" not supported by this converter. Please, provide an specification.
-04_10__leaf_blocks__tables_extension__002: |-
- Error - check implementation:
- Hast node of type "table" not supported by this converter. Please, provide an specification.
-04_10__leaf_blocks__tables_extension__003: |-
- Error - check implementation:
- Hast node of type "table" not supported by this converter. Please, provide an specification.
-04_10__leaf_blocks__tables_extension__004: |-
- Error - check implementation:
- Hast node of type "table" not supported by this converter. Please, provide an specification.
-04_10__leaf_blocks__tables_extension__005: |-
- Error - check implementation:
- Hast node of type "table" not supported by this converter. Please, provide an specification.
-04_10__leaf_blocks__tables_extension__006: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "| abc | def |\n| --- |\n| bar |"
- }
- ]
- }
- ]
- }
-04_10__leaf_blocks__tables_extension__007: |-
- Error - check implementation:
- Hast node of type "table" not supported by this converter. Please, provide an specification.
-04_10__leaf_blocks__tables_extension__008: |-
- Error - check implementation:
- Hast node of type "table" not supported by this converter. Please, provide an specification.
-05_01__container_blocks__block_quotes__001: |-
- {
- "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__002: |-
- {
- "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__003: |-
- {
- "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__004: |-
- {
- "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__005: |-
- {
- "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__006: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "blockquote",
- "attrs": {
- "multiline": false
- },
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "bar\nbaz\nfoo"
- }
- ]
- }
- ]
- }
- ]
- }
-05_01__container_blocks__block_quotes__007: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "blockquote",
- "attrs": {
- "multiline": false
- },
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo"
- }
- ]
- }
- ]
- },
- {
- "type": "horizontalRule"
- }
- ]
- }
-05_01__container_blocks__block_quotes__008: |-
- {
- "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__009: |-
- {
- "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__010: |-
- {
- "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__011: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "blockquote",
- "attrs": {
- "multiline": false
- },
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo\n- bar"
- }
- ]
- }
- ]
- }
- ]
- }
-05_01__container_blocks__block_quotes__012: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "blockquote",
- "attrs": {
- "multiline": false
- },
- "content": [
- {
- "type": "paragraph"
- }
- ]
- }
- ]
- }
-05_01__container_blocks__block_quotes__013: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "blockquote",
- "attrs": {
- "multiline": false
- },
- "content": [
- {
- "type": "paragraph"
- }
- ]
- }
- ]
- }
-05_01__container_blocks__block_quotes__014: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "blockquote",
- "attrs": {
- "multiline": false
- },
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo"
- }
- ]
- }
- ]
- }
- ]
- }
-05_01__container_blocks__block_quotes__015: |-
- {
- "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__016: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "blockquote",
- "attrs": {
- "multiline": false
- },
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo\nbar"
- }
- ]
- }
- ]
- }
- ]
- }
-05_01__container_blocks__block_quotes__017: |-
- {
- "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__018: |-
- {
- "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__019: |-
- {
- "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__020: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "blockquote",
- "attrs": {
- "multiline": false
- },
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "bar\nbaz"
- }
- ]
- }
- ]
- }
- ]
- }
-05_01__container_blocks__block_quotes__021: |-
- {
- "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__022: |-
- {
- "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__023: |-
- {
- "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__024: |-
- {
- "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__025: |-
- {
- "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__001: |-
- {
- "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__002: |-
- {
- "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__003: |-
- {
- "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__004: |-
- {
- "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__005: |-
- {
- "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__006: |-
- {
- "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__007: |-
- {
- "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__008: |-
- {
- "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__009: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "-one"
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "2.two"
- }
- ]
- }
- ]
- }
-05_02__container_blocks__list_items__010: |-
- {
- "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__011: |-
- {
- "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__012: |-
- {
- "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__013: |-
- {
- "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__014: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "1234567890. not ok"
- }
- ]
- }
- ]
- }
-05_02__container_blocks__list_items__015: |-
- {
- "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__016: |-
- {
- "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__017: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "-1. not ok"
- }
- ]
- }
- ]
- }
-05_02__container_blocks__list_items__018: |-
- {
- "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__019: |-
- {
- "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__020: |-
- {
- "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__021: |-
- {
- "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__022: |-
- {
- "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__023: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo"
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "bar"
- }
- ]
- }
- ]
- }
-05_02__container_blocks__list_items__024: |-
- {
- "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__025: |-
- {
- "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__026: |-
- {
- "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__027: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "bulletList",
- "attrs": {
- "bullet": "*"
- },
- "content": [
- {
- "type": "listItem",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo"
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
-05_02__container_blocks__list_items__028: |-
- {
- "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__029: |-
- {
- "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__030: |-
- {
- "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__031: |-
- {
- "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__032: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "bulletList",
- "attrs": {
- "bullet": "*"
- },
- "content": [
- {
- "type": "listItem",
- "content": [
- {
- "type": "paragraph"
- }
- ]
- }
- ]
- }
- ]
- }
-05_02__container_blocks__list_items__033: |-
- {
- "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__034: |-
- {
- "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__035: |-
- {
- "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__036: |-
- {
- "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__037: |-
- {
- "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__038: |-
- {
- "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__039: |-
- {
- "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__040: |-
- {
- "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__041: |-
- {
- "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__042: |-
- {
- "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": "bulletList",
- "attrs": {
- "bullet": "*"
- },
- "content": [
- {
- "type": "listItem",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "baz"
- }
- ]
- },
- {
- "type": "bulletList",
- "attrs": {
- "bullet": "*"
- },
- "content": [
- {
- "type": "listItem",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "boo"
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
-05_02__container_blocks__list_items__043: |-
- {
- "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__044: |-
- {
- "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__045: |-
- {
- "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__046: |-
- {
- "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__047: |-
- {
- "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__048: |-
- {
- "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__049: |-
- {
- "type": "doc",
- "content": [
- {
- "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__050: |-
- {
- "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__051: |-
- {
- "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__052: |-
- {
- "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__053: |-
- {
- "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__054: |-
- {
- "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__055: |-
- {
- "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": "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__056: |-
- Error - check implementation:
- Cannot destructure property 'className' of 'hastNode.properties' as it is undefined.
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__057: |-
- Error - check implementation:
- Cannot destructure property 'className' of 'hastNode.properties' as it is undefined.
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__058: |-
- {
- "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__059: |-
- {
- "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__060: |-
- {
- "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__061: |-
- {
- "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__062: |-
- {
- "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__063: |-
- {
- "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__064: |-
- {
- "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__065: |-
- {
- "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__066: |-
- {
- "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__067: |-
- {
- "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": "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__068: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "bulletList",
- "attrs": {
- "bullet": "*"
- },
- "content": [
- {
- "type": "listItem",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "a"
- }
- ]
- },
- {
- "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__069: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "bulletList",
- "attrs": {
- "bullet": "*"
- },
- "content": [
- {
- "type": "listItem",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "a"
- }
- ]
- },
- {
- "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__070: |-
- {
- "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__071: |-
- {
- "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"
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
-05_02__container_blocks__list_items__motivation__task_list_items_extension__lists__072: |-
- {
- "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__073: |-
- {
- "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__074: |-
- {
- "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__001: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": "hi"
- },
- {
- "type": "text",
- "text": "lo`"
- }
- ]
- }
- ]
- }
-06_02__inlines__backslash_escapes__001: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~"
- }
- ]
- }
- ]
- }
-06_02__inlines__backslash_escapes__002: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "\\\t\\A\\a\\ \\3\\φ\\«"
- }
- ]
- }
- ]
- }
-06_02__inlines__backslash_escapes__003: |-
- {
- "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__004: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "\\"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "emphasis"
- }
- ]
- }
- ]
- }
-06_02__inlines__backslash_escapes__005: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo"
- },
- {
- "type": "hardBreak"
- },
- {
- "type": "text",
- "text": "\nbar"
- }
- ]
- }
- ]
- }
-06_02__inlines__backslash_escapes__006: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": "\\[\\`"
- }
- ]
- }
- ]
- }
-06_02__inlines__backslash_escapes__007: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "\\[\\]"
- }
- ]
- }
- ]
- }
-06_02__inlines__backslash_escapes__008: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": null,
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "\\[\\]"
- }
- ]
- }
- ]
- }
-06_02__inlines__backslash_escapes__009: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "http://example.com?find=%5C*",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "http://example.com?find=\\*"
- }
- ]
- }
- ]
- }
-06_02__inlines__backslash_escapes__010: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph"
- }
- ]
- }
-06_02__inlines__backslash_escapes__011: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/bar*",
- "target": "_blank",
- "class": null,
- "title": "ti*tle",
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-06_02__inlines__backslash_escapes__012: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/bar*",
- "target": "_blank",
- "class": null,
- "title": "ti*tle",
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-06_02__inlines__backslash_escapes__013: |-
- {
- "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__001: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "  & © Æ Ď\n¾ ℋ ⅆ\n∲ ≧̸"
- }
- ]
- }
- ]
- }
-06_03__inlines__entity_and_numeric_character_references__002: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "# Ӓ Ϡ �"
- }
- ]
- }
- ]
- }
-06_03__inlines__entity_and_numeric_character_references__003: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "\" ആ ಫ"
- }
- ]
- }
- ]
- }
-06_03__inlines__entity_and_numeric_character_references__004: |-
- {
- "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__005: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "&copy"
- }
- ]
- }
- ]
- }
-06_03__inlines__entity_and_numeric_character_references__006: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "&MadeUpEntity;"
- }
- ]
- }
- ]
- }
-06_03__inlines__entity_and_numeric_character_references__007: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph"
- }
- ]
- }
-06_03__inlines__entity_and_numeric_character_references__008: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/f%C3%B6%C3%B6",
- "target": "_blank",
- "class": null,
- "title": "föö",
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-06_03__inlines__entity_and_numeric_character_references__009: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/f%C3%B6%C3%B6",
- "target": "_blank",
- "class": null,
- "title": "föö",
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-06_03__inlines__entity_and_numeric_character_references__010: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "codeBlock",
- "attrs": {
- "language": "föö",
- "class": "code highlight"
- },
- "content": [
- {
- "type": "text",
- "text": "foo"
- }
- ]
- }
- ]
- }
-06_03__inlines__entity_and_numeric_character_references__011: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": "f&ouml;&ouml;"
- }
- ]
- }
- ]
- }
-06_03__inlines__entity_and_numeric_character_references__012: |-
- {
- "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__013: |-
- {
- "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__014: |-
- {
- "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__015: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo\n\nbar"
- }
- ]
- }
- ]
- }
-06_03__inlines__entity_and_numeric_character_references__016: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "\tfoo"
- }
- ]
- }
- ]
- }
-06_03__inlines__entity_and_numeric_character_references__017: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[a](url \"tit\")"
- }
- ]
- }
- ]
- }
-06_04__inlines__code_spans__001: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-06_04__inlines__code_spans__002: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": "foo ` bar"
- }
- ]
- }
- ]
- }
-06_04__inlines__code_spans__003: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": "``"
- }
- ]
- }
- ]
- }
-06_04__inlines__code_spans__004: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": " `` "
- }
- ]
- }
- ]
- }
-06_04__inlines__code_spans__005: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": " a"
- }
- ]
- }
- ]
- }
-06_04__inlines__code_spans__006: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": " b "
- }
- ]
- }
- ]
- }
-06_04__inlines__code_spans__007: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph"
- }
- ]
- }
-06_04__inlines__code_spans__008: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": "foo bar baz"
- }
- ]
- }
- ]
- }
-06_04__inlines__code_spans__009: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": "foo "
- }
- ]
- }
- ]
- }
-06_04__inlines__code_spans__010: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": "foo bar baz"
- }
- ]
- }
- ]
- }
-06_04__inlines__code_spans__011: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": "foo\\"
- },
- {
- "type": "text",
- "text": "bar`"
- }
- ]
- }
- ]
- }
-06_04__inlines__code_spans__012: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": "foo`bar"
- }
- ]
- }
- ]
- }
-06_04__inlines__code_spans__013: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": "foo `` bar"
- }
- ]
- }
- ]
- }
-06_04__inlines__code_spans__014: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "*foo"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": "*"
- }
- ]
- }
- ]
- }
-06_04__inlines__code_spans__015: |-
- {
- "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__016: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": "<a href=\""
- },
- {
- "type": "text",
- "text": "\">`"
- }
- ]
- }
- ]
- }
-06_04__inlines__code_spans__017: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "`",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "`"
- }
- ]
- }
- ]
- }
-06_04__inlines__code_spans__018: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": "<http://foo.bar."
- },
- {
- "type": "text",
- "text": "baz>`"
- }
- ]
- }
- ]
- }
-06_04__inlines__code_spans__019: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "http://foo.bar.%60baz",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "http://foo.bar.`baz"
- },
- {
- "type": "text",
- "text": "`"
- }
- ]
- }
- ]
- }
-06_04__inlines__code_spans__020: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "```foo``"
- }
- ]
- }
- ]
- }
-06_04__inlines__code_spans__021: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "`foo"
- }
- ]
- }
- ]
- }
-06_04__inlines__code_spans__022: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "`foo"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": "bar"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__001: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "foo bar"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__002: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "a * foo bar*"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__003: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "a*\"foo\"*"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__004: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "* a *"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__005: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "bar"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__006: |-
- {
- "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__007: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "foo bar"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__008: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "_ foo bar_"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__009: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "a_\"foo\"_"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__010: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo_bar_"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__011: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "5_6_78"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__012: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "пристаням_стремятся_"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__013: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "aa_\"bb\"_cc"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__014: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo-"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "(bar)"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__015: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "_foo*"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__016: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "*foo bar *"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__017: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "*foo bar\n*"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__018: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "*(*foo)"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__019: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "(foo"
- },
- {
- "type": "text",
- "text": ")"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__020: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "foo"
- },
- {
- "type": "text",
- "text": "bar"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__021: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "_foo bar _"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__022: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "_(_foo)"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__023: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "(foo"
- },
- {
- "type": "text",
- "text": ")"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__024: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "_foo_bar"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__025: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "_пристаням_стремятся"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__026: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "foo_bar_baz"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__027: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "(bar)"
- },
- {
- "type": "text",
- "text": "."
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__028: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "bold"
- }
- ],
- "text": "foo bar"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__029: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "** foo bar**"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__030: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "a**\"foo\"**"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__031: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "bold"
- }
- ],
- "text": "bar"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__032: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "bold"
- }
- ],
- "text": "foo bar"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__033: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "__ foo bar__"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__034: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "__\nfoo bar__"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__035: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "a__\"foo\"__"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__036: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo__bar__"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__037: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "5__6__78"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__038: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "пристаням__стремятся__"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__039: |-
- {
- "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__040: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo-"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "bold"
- }
- ],
- "text": "(bar)"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__041: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "**foo bar **"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__042: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "**(**foo)"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__043: |-
- {
- "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__044: |-
- {
- "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__045: |-
- {
- "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__046: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "bold"
- }
- ],
- "text": "foo"
- },
- {
- "type": "text",
- "text": "bar"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__047: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "__foo bar __"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__048: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "__(__foo)"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__049: |-
- {
- "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__050: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "__foo__bar"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__051: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "__пристаням__стремятся"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__052: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "bold"
- }
- ],
- "text": "foo__bar__baz"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__053: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "bold"
- }
- ],
- "text": "(bar)"
- },
- {
- "type": "text",
- "text": "."
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__054: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "foo "
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "bar"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__055: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "foo\nbar"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__056: |-
- {
- "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__057: |-
- {
- "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__058: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "foo"
- },
- {
- "type": "text",
- "text": " bar"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__059: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "foo bar"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__060: |-
- {
- "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__061: |-
- {
- "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__062: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "foo**bar"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__063: |-
- {
- "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__064: |-
- {
- "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__065: |-
- {
- "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__066: |-
- {
- "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__067: |-
- {
- "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__068: |-
- {
- "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__069: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "foo "
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- },
- {
- "type": "italic"
- }
- ],
- "text": "bar"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__070: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "** is not an empty emphasis"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__071: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "**** is not an empty strong emphasis"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__072: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "bold"
- }
- ],
- "text": "foo "
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "bar"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__073: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "bold"
- }
- ],
- "text": "foo\nbar"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__074: |-
- {
- "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__075: |-
- {
- "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__076: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "bold"
- }
- ],
- "text": "foo"
- },
- {
- "type": "text",
- "text": " bar"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__077: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "bold"
- }
- ],
- "text": "foo bar"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__078: |-
- {
- "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__079: |-
- {
- "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__080: |-
- {
- "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__081: |-
- {
- "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__082: |-
- {
- "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__083: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "bold"
- }
- ],
- "text": "foo "
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- },
- {
- "type": "italic"
- }
- ],
- "text": "bar"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__084: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "__ is not an empty emphasis"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__085: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "____ is not an empty strong emphasis"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__086: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo ***"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__087: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo "
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "*"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__088: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo "
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "_"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__089: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo *****"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__090: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo "
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "bold"
- }
- ],
- "text": "*"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__091: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo "
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "bold"
- }
- ],
- "text": "_"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__092: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "*"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__093: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "foo"
- },
- {
- "type": "text",
- "text": "*"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__094: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "*"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "bold"
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__095: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "***"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__096: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "bold"
- }
- ],
- "text": "foo"
- },
- {
- "type": "text",
- "text": "*"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__097: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "foo"
- },
- {
- "type": "text",
- "text": "***"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__098: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo ___"
- }
- ]
- }
- ]
- }
-06_05__inlines__emphasis_and_strong_emphasis__099: |-
- {
- "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",
- "class": null,
- "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",
- "class": null,
- "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",
- "class": null,
- "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",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "http://foo.bar/?q=__"
- }
- ]
- }
- ]
- }
-06_06__inlines__strikethrough_extension__001: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "strike"
- }
- ],
- "text": "Hi"
- },
- {
- "type": "text",
- "text": " Hello, world!"
- }
- ]
- }
- ]
- }
-06_06__inlines__strikethrough_extension__002: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "This ~~has a"
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "new paragraph~~."
- }
- ]
- }
- ]
- }
-06_07__inlines__links__001: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/uri",
- "target": "_blank",
- "class": null,
- "title": "title",
- "canonicalSrc": null
- }
- }
- ],
- "text": "link"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__002: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/uri",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "link"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__003: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "link"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__004: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "link"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__005: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[link](/my uri)"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__006: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/my%20uri",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "link"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__007: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[link](foo\nbar)"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__008: |-
- Error - check implementation:
- Hast node of type "foo" not supported by this converter. Please, provide an specification.
-06_07__inlines__links__009: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "b)c",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "a"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__010: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[link](<foo>)"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__011: |-
- {
- "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__012: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "(foo)",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "link"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__013: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "foo(and(bar))",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "link"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__014: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "foo(and(bar)",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "link"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__015: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "foo(and(bar)",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "link"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__016: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "foo):",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "link"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__017: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "#fragment",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "link"
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "http://example.com#fragment",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "link"
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "http://example.com?foo=3#frag",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "link"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__018: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "foo%5Cbar",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "link"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__019: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "foo%20b%C3%A4",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "link"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__020: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "%22title%22",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "link"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__021: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": "title",
- "canonicalSrc": null
- }
- }
- ],
- "text": "linklinklink"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__022: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": "title \"\"",
- "canonicalSrc": null
- }
- }
- ],
- "text": "link"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__023: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url%C2%A0%22title%22",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "link"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__024: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[link](/url \"title \"and\" title\")"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__025: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": "title \"and\" title",
- "canonicalSrc": null
- }
- }
- ],
- "text": "link"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__026: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/uri",
- "target": "_blank",
- "class": null,
- "title": "title",
- "canonicalSrc": null
- }
- }
- ],
- "text": "link"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__027: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[link] (/uri)"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__028: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/uri",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "link [foo [bar]]"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__029: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[link] bar](/uri)"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__030: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[link "
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/uri",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "bar"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__031: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/uri",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "link [bar"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__032: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/uri",
- "target": "_blank",
- "class": null,
- "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__033: |-
- Error - check implementation:
- Cannot destructure property 'type' of 'this.stack.pop(...)' as it is undefined.
-06_07__inlines__links__034: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[foo "
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/uri",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "bar"
- },
- {
- "type": "text",
- "text": "](/uri)"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__035: |-
- {
- "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",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "baz"
- },
- {
- "type": "text",
- "text": "](/uri)](/uri)"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__036: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "image",
- "attrs": {
- "src": "uri3",
- "alt": "[foo](uri2)",
- "title": null,
- "uploading": false,
- "canonicalSrc": null
- }
- }
- ]
- }
- ]
- }
-06_07__inlines__links__037: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "*"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/uri",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo*"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__038: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "baz*",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo *bar"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__039: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "italic"
- }
- ],
- "text": "foo [bar"
- },
- {
- "type": "text",
- "text": " baz]"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__040: |-
- Error - check implementation:
- Hast node of type "bar" not supported by this converter. Please, provide an specification.
-06_07__inlines__links__041: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[foo"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": "](/uri)"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__042: |-
- {
- "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",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "http://example.com/?search=](uri)"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__043: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": "title",
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__044: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/uri",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "link [foo [bar]]"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__045: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/uri",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "link [bar"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__046: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/uri",
- "target": "_blank",
- "class": null,
- "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__047: |-
- Error - check implementation:
- Cannot destructure property 'type' of 'this.stack.pop(...)' as it is undefined.
-06_07__inlines__links__048: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[foo "
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/uri",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "bar"
- },
- {
- "type": "text",
- "text": "]"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/uri",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "ref"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__049: |-
- {
- "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",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "baz"
- },
- {
- "type": "text",
- "text": "]"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/uri",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "ref"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__050: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "*"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/uri",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo*"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__051: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/uri",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo *bar"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__052: |-
- Error - check implementation:
- Hast node of type "bar" not supported by this converter. Please, provide an specification.
-06_07__inlines__links__053: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[foo"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": "][ref]"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__054: |-
- {
- "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",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "http://example.com/?search=][ref]"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__055: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": "title",
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__056: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "Толпой"
- },
- {
- "type": "text",
- "text": " is a Russian word."
- }
- ]
- }
- ]
- }
-06_07__inlines__links__057: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "Baz"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__058: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[foo] "
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": "title",
- "canonicalSrc": null
- }
- }
- ],
- "text": "bar"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__059: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[foo]\n"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": "title",
- "canonicalSrc": null
- }
- }
- ],
- "text": "bar"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__060: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url1",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "bar"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__061: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[bar][foo!]"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__062: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[foo][ref[]"
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[ref[]: /uri"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__063: |-
- {
- "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__064: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[[[foo]]]"
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[[[foo]]]: /url"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__065: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/uri",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__066: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/uri",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "bar\\"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__067: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[]"
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[]: /uri"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__068: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[\n]"
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[\n]: /uri"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__069: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": "title",
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__070: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": "title",
- "canonicalSrc": null
- }
- },
- {
- "type": "italic"
- }
- ],
- "text": "foo"
- },
- {
- "type": "text",
- "text": " bar"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__071: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": "title",
- "canonicalSrc": null
- }
- }
- ],
- "text": "Foo"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__072: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": "title",
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- },
- {
- "type": "text",
- "text": "\n[]"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__073: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": "title",
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__074: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": "title",
- "canonicalSrc": null
- }
- },
- {
- "type": "italic"
- }
- ],
- "text": "foo"
- },
- {
- "type": "text",
- "text": " bar"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__075: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "["
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": "title",
- "canonicalSrc": null
- }
- },
- {
- "type": "italic"
- }
- ],
- "text": "foo"
- },
- {
- "type": "text",
- "text": " bar]"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__076: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[[bar "
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__077: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": "title",
- "canonicalSrc": null
- }
- }
- ],
- "text": "Foo"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__078: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- },
- {
- "type": "text",
- "text": " bar"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__079: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[foo]"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__080: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "*"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo*"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__081: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url2",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__082: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url1",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__083: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__084: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url1",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- },
- {
- "type": "text",
- "text": "(not a link)"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__085: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[foo]"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "bar"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__086: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url2",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url1",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "baz"
- }
- ]
- }
- ]
- }
-06_07__inlines__links__087: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[foo]"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url1",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "bar"
- }
- ]
- }
- ]
- }
-06_08__inlines__images__001: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "image",
- "attrs": {
- "src": "/url",
- "alt": "foo",
- "title": "title",
- "uploading": false,
- "canonicalSrc": null
- }
- }
- ]
- }
- ]
- }
-06_08__inlines__images__002: |-
- {
- "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__003: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "image",
- "attrs": {
- "src": "/url2",
- "alt": "foo bar",
- "title": null,
- "uploading": false,
- "canonicalSrc": null
- }
- }
- ]
- }
- ]
- }
-06_08__inlines__images__004: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "image",
- "attrs": {
- "src": "/url2",
- "alt": "foo bar",
- "title": null,
- "uploading": false,
- "canonicalSrc": null
- }
- }
- ]
- }
- ]
- }
-06_08__inlines__images__005: |-
- {
- "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__006: |-
- {
- "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__007: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "image",
- "attrs": {
- "src": "train.jpg",
- "alt": "foo",
- "title": null,
- "uploading": false,
- "canonicalSrc": null
- }
- }
- ]
- }
- ]
- }
-06_08__inlines__images__008: |-
- {
- "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__009: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "image",
- "attrs": {
- "src": "url",
- "alt": "foo",
- "title": null,
- "uploading": false,
- "canonicalSrc": null
- }
- }
- ]
- }
- ]
- }
-06_08__inlines__images__010: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "image",
- "attrs": {
- "src": "/url",
- "alt": "",
- "title": null,
- "uploading": false,
- "canonicalSrc": null
- }
- }
- ]
- }
- ]
- }
-06_08__inlines__images__011: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "image",
- "attrs": {
- "src": "/url",
- "alt": "foo",
- "title": null,
- "uploading": false,
- "canonicalSrc": null
- }
- }
- ]
- }
- ]
- }
-06_08__inlines__images__012: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "image",
- "attrs": {
- "src": "/url",
- "alt": "foo",
- "title": null,
- "uploading": false,
- "canonicalSrc": null
- }
- }
- ]
- }
- ]
- }
-06_08__inlines__images__013: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "image",
- "attrs": {
- "src": "/url",
- "alt": "foo",
- "title": "title",
- "uploading": false,
- "canonicalSrc": null
- }
- }
- ]
- }
- ]
- }
-06_08__inlines__images__014: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "image",
- "attrs": {
- "src": "/url",
- "alt": "foo bar",
- "title": "title",
- "uploading": false,
- "canonicalSrc": null
- }
- }
- ]
- }
- ]
- }
-06_08__inlines__images__015: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "image",
- "attrs": {
- "src": "/url",
- "alt": "Foo",
- "title": "title",
- "uploading": false,
- "canonicalSrc": null
- }
- }
- ]
- }
- ]
- }
-06_08__inlines__images__016: |-
- {
- "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__017: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "image",
- "attrs": {
- "src": "/url",
- "alt": "foo",
- "title": "title",
- "uploading": false,
- "canonicalSrc": null
- }
- }
- ]
- }
- ]
- }
-06_08__inlines__images__018: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "image",
- "attrs": {
- "src": "/url",
- "alt": "foo bar",
- "title": "title",
- "uploading": false,
- "canonicalSrc": null
- }
- }
- ]
- }
- ]
- }
-06_08__inlines__images__019: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "![[foo]]"
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "[[foo]]: /url \"title\""
- }
- ]
- }
- ]
- }
-06_08__inlines__images__020: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "image",
- "attrs": {
- "src": "/url",
- "alt": "Foo",
- "title": "title",
- "uploading": false,
- "canonicalSrc": null
- }
- }
- ]
- }
- ]
- }
-06_08__inlines__images__021: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "![foo]"
- }
- ]
- }
- ]
- }
-06_08__inlines__images__022: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "!"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "/url",
- "target": "_blank",
- "class": null,
- "title": "title",
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo"
- }
- ]
- }
- ]
- }
-06_09__inlines__autolinks__001: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "http://foo.bar.baz",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "http://foo.bar.baz"
- }
- ]
- }
- ]
- }
-06_09__inlines__autolinks__002: |-
- {
- "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",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "http://foo.bar.baz/test?q=hello&id=22&boolean"
- }
- ]
- }
- ]
- }
-06_09__inlines__autolinks__003: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "irc://foo.bar:2233/baz",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "irc://foo.bar:2233/baz"
- }
- ]
- }
- ]
- }
-06_09__inlines__autolinks__004: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "MAILTO:FOO@BAR.BAZ",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "MAILTO:FOO@BAR.BAZ"
- }
- ]
- }
- ]
- }
-06_09__inlines__autolinks__005: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "a+b+c:d",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "a+b+c:d"
- }
- ]
- }
- ]
- }
-06_09__inlines__autolinks__006: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "made-up-scheme://foo,bar",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "made-up-scheme://foo,bar"
- }
- ]
- }
- ]
- }
-06_09__inlines__autolinks__007: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "http://../",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "http://../"
- }
- ]
- }
- ]
- }
-06_09__inlines__autolinks__008: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "localhost:5001/foo",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "localhost:5001/foo"
- }
- ]
- }
- ]
- }
-06_09__inlines__autolinks__009: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "<"
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "http://foo.bar/baz",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "http://foo.bar/baz"
- },
- {
- "type": "text",
- "text": " bim>"
- }
- ]
- }
- ]
- }
-06_09__inlines__autolinks__010: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "http://example.com/%5C%5B%5C",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "http://example.com/\\[\\"
- }
- ]
- }
- ]
- }
-06_09__inlines__autolinks__011: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "mailto:foo@bar.example.com",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo@bar.example.com"
- }
- ]
- }
- ]
- }
-06_09__inlines__autolinks__012: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "mailto:foo+special@Bar.baz-bar0.com",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo+special@Bar.baz-bar0.com"
- }
- ]
- }
- ]
- }
-06_09__inlines__autolinks__013: |-
- Error - check implementation:
- Cannot read properties of undefined (reading 'end')
-06_09__inlines__autolinks__014: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "<>"
- }
- ]
- }
- ]
- }
-06_09__inlines__autolinks__015: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "< "
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "http://foo.bar",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "http://foo.bar"
- },
- {
- "type": "text",
- "text": " >"
- }
- ]
- }
- ]
- }
-06_09__inlines__autolinks__016: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "<m:abc>"
- }
- ]
- }
- ]
- }
-06_09__inlines__autolinks__017: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "<foo.bar.baz>"
- }
- ]
- }
- ]
- }
-06_09__inlines__autolinks__018: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "http://example.com",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "http://example.com"
- }
- ]
- }
- ]
- }
-06_09__inlines__autolinks__019: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "mailto:foo@bar.example.com",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo@bar.example.com"
- }
- ]
- }
- ]
- }
-06_10__inlines__autolinks_extension__001: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "http://www.commonmark.org",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "www.commonmark.org"
- }
- ]
- }
- ]
- }
-06_10__inlines__autolinks_extension__002: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "Visit "
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "http://www.commonmark.org/help",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "www.commonmark.org/help"
- },
- {
- "type": "text",
- "text": " for more information."
- }
- ]
- }
- ]
- }
-06_10__inlines__autolinks_extension__003: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "Visit "
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "http://www.commonmark.org",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "www.commonmark.org"
- },
- {
- "type": "text",
- "text": "."
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "Visit "
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "http://www.commonmark.org/a.b",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "www.commonmark.org/a.b"
- },
- {
- "type": "text",
- "text": "."
- }
- ]
- }
- ]
- }
-06_10__inlines__autolinks_extension__004: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "http://www.google.com/search?q=Markup+(business)",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "www.google.com/search?q=Markup+(business)"
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "http://www.google.com/search?q=Markup+(business)",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "www.google.com/search?q=Markup+(business)"
- },
- {
- "type": "text",
- "text": "))"
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "("
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "http://www.google.com/search?q=Markup+(business)",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "www.google.com/search?q=Markup+(business)"
- },
- {
- "type": "text",
- "text": ")"
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "("
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "http://www.google.com/search?q=Markup+(business)",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "www.google.com/search?q=Markup+(business)"
- }
- ]
- }
- ]
- }
-06_10__inlines__autolinks_extension__005: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "http://www.google.com/search?q=(business))+ok",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "www.google.com/search?q=(business))+ok"
- }
- ]
- }
- ]
- }
-06_10__inlines__autolinks_extension__006: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "http://www.google.com/search?q=commonmark&hl=en",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "www.google.com/search?q=commonmark&hl=en"
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "http://www.google.com/search?q=commonmark",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "www.google.com/search?q=commonmark"
- },
- {
- "type": "text",
- "text": "&hl;"
- }
- ]
- }
- ]
- }
-06_10__inlines__autolinks_extension__007: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "http://www.commonmark.org/he",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "www.commonmark.org/he"
- },
- {
- "type": "text",
- "text": "<lp"
- }
- ]
- }
- ]
- }
-06_10__inlines__autolinks_extension__008: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "http://commonmark.org",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "http://commonmark.org"
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "(Visit "
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "https://encrypted.google.com/search?q=Markup+(business)",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "https://encrypted.google.com/search?q=Markup+(business)"
- },
- {
- "type": "text",
- "text": ")"
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "Anonymous FTP is available at ftp://foo.bar.baz."
- }
- ]
- }
- ]
- }
-06_10__inlines__autolinks_extension__009: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "mailto:foo@bar.baz",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "foo@bar.baz"
- }
- ]
- }
- ]
- }
-06_10__inlines__autolinks_extension__010: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "hello@mail+xyz.example isn't valid, but "
- },
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "mailto:hello+xyz@mail.example",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "hello+xyz@mail.example"
- },
- {
- "type": "text",
- "text": " is."
- }
- ]
- }
- ]
- }
-06_10__inlines__autolinks_extension__011: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "mailto:a.b-c_d@a.b",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "a.b-c_d@a.b"
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "link",
- "attrs": {
- "href": "mailto:a.b-c_d@a.b",
- "target": "_blank",
- "class": null,
- "title": null,
- "canonicalSrc": null
- }
- }
- ],
- "text": "a.b-c_d@a.b"
- },
- {
- "type": "text",
- "text": "."
- }
- ]
- },
- {
- "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__001: |-
- Error - check implementation:
- Hast node of type "bab" not supported by this converter. Please, provide an specification.
-06_11__inlines__raw_html__002: |-
- Error - check implementation:
- Hast node of type "b2" not supported by this converter. Please, provide an specification.
-06_11__inlines__raw_html__003: |-
- Error - check implementation:
- Hast node of type "b2" not supported by this converter. Please, provide an specification.
-06_11__inlines__raw_html__004: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph"
- }
- ]
- }
-06_11__inlines__raw_html__005: |-
- Error - check implementation:
- Hast node of type "responsive-image" not supported by this converter. Please, provide an specification.
-06_11__inlines__raw_html__006: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "<33> <__>"
- }
- ]
- }
- ]
- }
-06_11__inlines__raw_html__007: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "<a h*#ref=\"hi\">"
- }
- ]
- }
- ]
- }
-06_11__inlines__raw_html__008: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "<a href=\"hi'> <a href=hi'>"
- }
- ]
- }
- ]
- }
-06_11__inlines__raw_html__009: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "< a><\nfoo><bar/ >\n<foo bar=baz\nbim!bop />"
- }
- ]
- }
- ]
- }
-06_11__inlines__raw_html__010: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "<a href='bar'title=title>"
- }
- ]
- }
- ]
- }
-06_11__inlines__raw_html__011: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph"
- }
- ]
- }
-06_11__inlines__raw_html__012: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "</a href=\"foo\">"
- }
- ]
- }
- ]
- }
-06_11__inlines__raw_html__013: |-
- Error - check implementation:
- Cannot destructure property 'className' of 'hastNode.properties' as it is undefined.
-06_11__inlines__raw_html__014: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo <!-- not a comment -- two hyphens -->"
- }
- ]
- }
- ]
- }
-06_11__inlines__raw_html__015: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo <!--> foo -->"
- }
- ]
- },
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo <!-- foo--->"
- }
- ]
- }
- ]
- }
-06_11__inlines__raw_html__016: |-
- Error - check implementation:
- Cannot destructure property 'className' of 'hastNode.properties' as it is undefined.
-06_11__inlines__raw_html__017: |-
- Error - check implementation:
- Cannot destructure property 'className' of 'hastNode.properties' as it is undefined.
-06_11__inlines__raw_html__018: |-
- Error - check implementation:
- Cannot destructure property 'className' of 'hastNode.properties' as it is undefined.
-06_11__inlines__raw_html__019: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo "
- }
- ]
- }
- ]
- }
-06_11__inlines__raw_html__020: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo "
- }
- ]
- }
- ]
- }
-06_11__inlines__raw_html__021: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "<a href=\"\"\">"
- }
- ]
- }
- ]
- }
-06_12__inlines__disallowed_raw_html_extension__001: |-
- Error - check implementation:
- Hast node of type "title" not supported by this converter. Please, provide an specification.
-06_13__inlines__hard_line_breaks__001: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo"
- },
- {
- "type": "hardBreak"
- },
- {
- "type": "text",
- "text": "\nbaz"
- }
- ]
- }
- ]
- }
-06_13__inlines__hard_line_breaks__002: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo"
- },
- {
- "type": "hardBreak"
- },
- {
- "type": "text",
- "text": "\nbaz"
- }
- ]
- }
- ]
- }
-06_13__inlines__hard_line_breaks__003: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo"
- },
- {
- "type": "hardBreak"
- },
- {
- "type": "text",
- "text": "\nbaz"
- }
- ]
- }
- ]
- }
-06_13__inlines__hard_line_breaks__004: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo"
- },
- {
- "type": "hardBreak"
- },
- {
- "type": "text",
- "text": "\nbar"
- }
- ]
- }
- ]
- }
-06_13__inlines__hard_line_breaks__005: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo"
- },
- {
- "type": "hardBreak"
- },
- {
- "type": "text",
- "text": "\nbar"
- }
- ]
- }
- ]
- }
-06_13__inlines__hard_line_breaks__006: |-
- Error - check implementation:
- Cannot destructure property 'type' of 'this.stack.pop(...)' as it is undefined.
-06_13__inlines__hard_line_breaks__007: |-
- Error - check implementation:
- Cannot destructure property 'type' of 'this.stack.pop(...)' as it is undefined.
-06_13__inlines__hard_line_breaks__008: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": "code span"
- }
- ]
- }
- ]
- }
-06_13__inlines__hard_line_breaks__009: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "marks": [
- {
- "type": "code"
- }
- ],
- "text": "code\\ span"
- }
- ]
- }
- ]
- }
-06_13__inlines__hard_line_breaks__010: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph"
- }
- ]
- }
-06_13__inlines__hard_line_breaks__011: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph"
- }
- ]
- }
-06_13__inlines__hard_line_breaks__012: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo\\"
- }
- ]
- }
- ]
- }
-06_13__inlines__hard_line_breaks__013: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo"
- }
- ]
- }
- ]
- }
-06_13__inlines__hard_line_breaks__014: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "heading",
- "attrs": {
- "level": 3
- },
- "content": [
- {
- "type": "text",
- "text": "foo\\"
- }
- ]
- }
- ]
- }
-06_13__inlines__hard_line_breaks__015: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "heading",
- "attrs": {
- "level": 3
- },
- "content": [
- {
- "type": "text",
- "text": "foo"
- }
- ]
- }
- ]
- }
-06_14__inlines__soft_line_breaks__001: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo\nbaz"
- }
- ]
- }
- ]
- }
-06_14__inlines__soft_line_breaks__002: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "foo\nbaz"
- }
- ]
- }
- ]
- }
-06_15__inlines__textual_content__001: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "hello $.;'there"
- }
- ]
- }
- ]
- }
-06_15__inlines__textual_content__002: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "Foo χρῆν"
- }
- ]
- }
- ]
- }
-06_15__inlines__textual_content__003: |-
- {
- "type": "doc",
- "content": [
- {
- "type": "paragraph",
- "content": [
- {
- "type": "text",
- "text": "Multiple spaces"
- }
- ]
- }
- ]
- }
-07_01__gitlab_specific_markdown__footnotes__001: |-
- Error - check implementation:
- Hast node of type "sup" not supported by this converter. Please, provide an specification.
diff --git a/spec/fixtures/lib/gitlab/import_export/complex/project.json b/spec/fixtures/lib/gitlab/import_export/complex/project.json
index e721525f00c..12dbabf833b 100644
--- a/spec/fixtures/lib/gitlab/import_export/complex/project.json
+++ b/spec/fixtures/lib/gitlab/import_export/complex/project.json
@@ -2361,14 +2361,53 @@
"releases": [
{
"id": 1,
+ "tag": "release-1.0",
+ "description": "Some release notes",
+ "project_id": 5,
+ "created_at": "2019-12-25T10:17:14.621Z",
+ "updated_at": "2019-12-25T10:17:14.621Z",
+ "author_id": null,
+ "name": "release-1.0",
+ "sha": "902de3a8bd5573f4a049b1457d28bc1592baaa2e",
+ "released_at": "2019-12-25T10:17:14.615Z",
+ "links": [
+ {
+ "id": 1,
+ "release_id": 1,
+ "url": "http://localhost/namespace6/project6/-/jobs/140463678/artifacts/download",
+ "name": "release-1.0.dmg",
+ "created_at": "2019-12-25T10:17:14.621Z",
+ "updated_at": "2019-12-25T10: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
+ }
+ }
+ ]
+ },
+ {
+ "id": 2,
"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,
+ "author_id": 16,
"name": "release-1.1",
- "sha": "901de3a8bd5573f4a049b1457d28bc1592ba6bf9",
+ "sha": "902de3a8bd5573f4a049b1457d28bc1592ba6bg9",
"released_at": "2019-12-26T10:17:14.615Z",
"links": [
{
@@ -2397,6 +2436,45 @@
}
}
]
+ },
+ {
+ "id": 3,
+ "tag": "release-1.2",
+ "description": "Some release notes",
+ "project_id": 5,
+ "created_at": "2019-12-27T10:17:14.621Z",
+ "updated_at": "2019-12-27T10:17:14.621Z",
+ "author_id": 1,
+ "name": "release-1.2",
+ "sha": "903de3a8bd5573f4a049b1457d28bc1592ba6bf9",
+ "released_at": "2019-12-27T10:17:14.615Z",
+ "links": [
+ {
+ "id": 1,
+ "release_id": 1,
+ "url": "http://localhost/namespace6/project6/-/jobs/140463678/artifacts/download",
+ "name": "release-1.2.dmg",
+ "created_at": "2019-12-27T10:17:14.621Z",
+ "updated_at": "2019-12-27T10: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
+ }
+ }
+ ]
}
],
"project_members": [
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 a194898cb5a..dfbde1f2598 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,3 @@
-{"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}}]}
+{"id":1,"tag":"release-1.0","description":"Some release notes","project_id":5,"created_at":"2019-12-25T10:17:14.621Z","updated_at":"2019-12-25T10:17:14.621Z","author_id":null,"name":"release-1.0","sha":"901de3a8bd5573f4a049b1457d28bc1592baaa2e","released_at":"2019-12-25T10:17:14.615Z","links":[{"id":1,"release_id":1,"url":"http://localhost/namespace6/project6/-/jobs/140463678/artifacts/download","name":"release-1.0.dmg","created_at":"2019-12-25T10:17:14.621Z","updated_at":"2019-12-25T10: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}}]}
+{"id":2,"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":16,"name":"release-1.1","sha":"902de3a8bd5573f4a049b1457d28bc1592ba6bg9","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}}]}
+{"id":3,"tag":"release-1.2","description":"Some release notes","project_id":5,"created_at":"2019-12-27T10:17:14.621Z","updated_at":"2019-12-27T10:17:14.621Z","author_id":1,"name":"release-1.2","sha":"903de3a8bd5573f4a049b1457d28bc1592ba6bf9","released_at":"2019-12-27T10:17:14.615Z","links":[{"id":1,"release_id":1,"url":"http://localhost/namespace6/project6/-/jobs/140463678/artifacts/download","name":"release-1.2.dmg","created_at":"2019-12-27T10:17:14.621Z","updated_at":"2019-12-27T10: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/product_intelligence/survey_response_schema.json b/spec/fixtures/product_intelligence/survey_response_schema.json
deleted file mode 100644
index 03d2d170137..00000000000
--- a/spec/fixtures/product_intelligence/survey_response_schema.json
+++ /dev/null
@@ -1,58 +0,0 @@
-{
- "description": "Schema for a Gitlab survey_response event",
- "self": {
- "vendor": "com.gitlab",
- "name": "survey_response",
- "version": "1-0-1",
- "format": "jsonschema"
- },
- "type": "object",
- "additionalProperties": false,
- "required": ["survey_id", "response"],
- "properties": {
- "survey_id": {
- "description": "Survey ID",
- "type": "integer",
- "minimum": 0,
- "maximum": 2147483647
- },
- "response": {
- "description": "Response",
- "type": "string",
- "maxLength": 10000
- },
- "instance_id": {
- "description": "Instance ID",
- "type": ["integer", "null"],
- "minimum": 0,
- "maximum": 2147483647
- },
- "user_id": {
- "description": "User ID",
- "type": ["integer", "null"],
- "minimum": 0,
- "maximum": 2147483647
- },
- "email": {
- "description": "Email",
- "type": ["string", "null"],
- "maxLength": 255
- },
- "name": {
- "description": "Name",
- "type": ["string", "null"],
- "maxLength": 255
- },
- "username": {
- "description": "Username",
- "type": ["string", "null"],
- "maxLength": 255
- },
- "onboarding_progress": {
- "description": "Onboarding progress",
- "type": ["integer", "null"],
- "minimum": 0,
- "maximum": 2147483647
- }
- }
-}