Nothing
Code
check_yaml_parser("--\n---\n")
Condition
Error:
! Failed to parse line 1
1 | --
^~
Code
check_yaml_parser("---\n--\n")
Condition
Error:
! Failed to parse line 2, expected YAML closing fence
2 | --
^
Code
check_yaml_parser("----\n---\n")
Condition
Error:
! Failed to parse line 1
1 | ----
^~~~
Code
check_yaml_parser("---\n----\n")
Condition
Error:
! Failed to parse line 2, expected YAML closing fence
2 | ----
^
Code
check_yaml_parser("---\n")
Condition
Error:
! Failed to parse line 1, expected YAML closing fence
1 | ---
^
Code
check_yaml_parser("---\n\n---\n")
Condition
Error:
! Failed to parse line 1
1 | ---
^~~
Code
check_yaml_parser("---\n\nvalue: 1\n---\n")
Condition
Error:
! Failed to parse line 1
1 | ---
^~~
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.