1
0
Fork 0
mirror of https://github.com/Oreolek/ink-instead.git synced 2024-05-12 14:08:24 +03:00
ink-instead/test/parser/knot.lua
2017-08-08 16:28:55 +02:00

34 lines
582 B
Lua

return {
ink=[[
=== the_orient_express ===
= in_first_class
...
= in_third_class
...
= in_the_guards_van
...
...
= missed_the_train
...
== the_orient_express =
======== the_orient_express ===
=stitch
]],
expected={
{ "knot", "the_orient_express"},
{"stitch", "in_first_class"},
{"para", "..."},
{"stitch", "in_third_class"},
{"para", "..."},
{"stitch", "in_the_guards_van"},
{"para", "..."},
{"para", "..."},
{"stitch", "missed_the_train"},
{"para", "..."},
{"knot", "the_orient_express"},
{"knot", "the_orient_express"},
{"stitch", "stitch"}
}
}