Created
December 3, 2018 14:55
-
-
Save lpvm/45e3a656e1de97b2913d8e0b29db89b4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Red [] | |
html: { | |
<html> | |
<head><title>Test</title></head> | |
<body><div><u>Hello</u> <b>World</b></div></body> | |
</html> | |
} | |
ws: charset reduce [space tab cr lf] | |
parse html tags: [ | |
collect [any [ | |
ws | |
| "</" thru ">" break | |
| "<" copy name to ">" skip keep (load name) opt tags | |
| keep to "<" | |
]] | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment