The following string:
[FileTreeFile "frontend/dist/hello.html" "\n<html>\n\t<head>\n\t</head>\n\t<body>\n\t\t<p>hello world</p>\n\t</body>\n</html>\n",FileTreeDirectory "frontend/dist/what" [FileTreeFile "frontend/dist/what/who.html" "\n<html>\n\t<head>\n\t</head>\n\t<body>\n\t\t<p>hello world</p>\n\t</body>\n</html>\n"]]
Gets pretty-printed as this:
[ FileTreeFile "frontend/dist/hello.html""
<html>
<head>
</head>
<body>
<p>hello world</p>
</body>
</html>
"
, FileTreeDirectory "frontend/dist/what"[ FileTreeFile "frontend/dist/what/who.html""
<html>
<head>
</head>
<body>
<p>hello world</p>
</body>
</html>
" ]
]
It looks like whitespace after a string is being removed.
The following string:
Gets pretty-printed as this:
It looks like whitespace after a string is being removed.