https://github.com/ericmjl/website
Eric Ma's Personal Website
https://github.com/ericmjl/website
blog personal-website website
Last synced: about 1 year ago
JSON representation
Eric Ma's Personal Website
- Host: GitHub
- URL: https://github.com/ericmjl/website
- Owner: ericmjl
- Created: 2016-06-02T04:38:25.000Z (about 10 years ago)
- Default Branch: main
- Last Pushed: 2025-04-10T23:52:49.000Z (about 1 year ago)
- Last Synced: 2025-04-11T00:28:52.241Z (about 1 year ago)
- Topics: blog, personal-website, website
- Language: Jupyter Notebook
- Homepage: https://ericmjl.github.io/
- Size: 207 MB
- Stars: 9
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Eric's Personal Website Repository
This is the personal website of Eric J. Ma. It is built in Lektor.
All content here, unless otherwise stated, belongs under the copyright of Eric J. Ma. Permission is required to host elsewhere.
## Adding Diagrams with Mermaid.js
This site supports Mermaid.js diagrams. To add a diagram in your blog posts or pages, use the following HTML syntax:
```html
graph TD
A[Start] --> B{Decision}
B -->|Yes| C[Do Something]
B -->|No| D[Do Nothing]
```
Note: Use the HTML syntax above rather than Markdown code fences, as Mermaid needs the specific `class="mermaid"` attribute to work properly.
For more information on Mermaid.js diagram syntax, visit the [Mermaid.js documentation](https://mermaid.js.org/syntax/flowchart.html).