One potential improvement is to parse markdown files and convert it to HTML. For example it would be useful to shwoop README.md to edit readme for a repo
A few things to consider:
- Single file mode won't bring other assets -> can be solved by running
shwoop . and navigate to localhost/README.md
- Markdown parsing -> probably some rust crate can do it
- Styling: This is the most time-consuming part. It will probably just look like GitHub but won't be exact
- Compatibility: For example GitHub doesn't support all features supported by Markdown. Should there be some warning/flags that enable a "compatibility" mode so these issues can be caught before pushing? (At the same time not all markdown are for GitHub so maybe it's fine)
One potential improvement is to parse markdown files and convert it to HTML. For example it would be useful to
shwoop README.mdto edit readme for a repoA few things to consider:
shwoop .and navigate tolocalhost/README.md