Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/federicobruzzone/federicobruzzone.github.io

My Personal Website
https://github.com/federicobruzzone/federicobruzzone.github.io

blog personal-blog personal-portfolio personal-website website

Last synced: 9 days ago
JSON representation

My Personal Website

Awesome Lists containing this project

README

        

# My Personal Website

## Working locally

Start http server:
```bash
python3 -m http.server
```

Convert markdown to htlm:
```bash
pandoc -s -f markdown -t html5 -o test.html test.md --mathjax
# or
pandoc -s -f markdown -t html5 -o test.html test.md --mathml
```

Convert markdown to html (with syntax highlighting):
```bash
pandoc -s -f markdown -t html5 --highlight-style=pygments -o test.html test.md
```