Crates.io | rohanasantml |
lib.rs | rohanasantml |
version | 0.0.2 |
source | src |
created_at | 2024-03-24 22:23:43.836105 |
updated_at | 2024-03-25 10:25:01.797234 |
description | An easy way to write your messy html code in a better way. |
homepage | |
repository | https://github.com/rohanasan/rohanasantml-rs |
max_upload_size | |
id | 1184780 |
size | 46,282 |
An easy way to write your messy html code in a better way:
html
head
title
{Rohanasantml}
title end
head end
body
div style="color:blue;"
h1
{Hello, How are you?}
h1 end
div end
body end
html end
Compiled:
<html>
<head>
<title>
Rohanasantml
</title>
</head>
<body>
<div style="color:blue;">
<h1>
Hello, How are you?
</h1>
</div>
</body>
</html>
Run:
cargo install rohanasantml
rohanasantml ./some.rohanasantml ./output.html
Gives you errors of mistakes that you might have made in your code. Such as:
Helps make reliable html
https://github.com/rohanasan/rohanasan-rs