let render base_url =
<!DOCTYPE html>
<html lang="en">
<body>
<p>Test</p>
</body>
</html>
Does not parse.
let renderHome base_url =
<!DOCTYPE html>
<html lang="en">
<body>
<p>Test</p>
</body>
</html>
Parses (tabs after initial space indentation).
Considering the docs say to use *.eml.ml, I would expect to have similar basic parsing rules to OCaml which allows tab indentation fully (including initial indentation)..
Does not parse.
Parses (tabs after initial space indentation).
Considering the docs say to use
*.eml.ml, I would expect to have similar basic parsing rules to OCaml which allows tab indentation fully (including initial indentation)..