Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/federicobruzzone/federicobruzzone.github.io
- Owner: FedericoBruzzone
- Created: 2023-04-11T21:35:49.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-28T09:05:33.000Z (15 days ago)
- Last Synced: 2024-12-28T10:17:54.713Z (15 days ago)
- Topics: blog, personal-blog, personal-portfolio, personal-website, website
- Language: HTML
- Homepage: https://federicobruzzone.github.io/
- Size: 10.2 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```