Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kevinhinterlong/kevinhinterlong.github.io
Personal website
https://github.com/kevinhinterlong/kevinhinterlong.github.io
jekyll minimal-mistakes website
Last synced: 8 days ago
JSON representation
Personal website
- Host: GitHub
- URL: https://github.com/kevinhinterlong/kevinhinterlong.github.io
- Owner: kevinhinterlong
- License: other
- Created: 2015-04-25T06:07:52.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-10-01T01:45:25.000Z (about 1 month ago)
- Last Synced: 2024-10-07T17:21:31.423Z (29 days ago)
- Topics: jekyll, minimal-mistakes, website
- Language: Ruby
- Homepage: https://kevin.hinterlong.com
- Size: 26 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# [Kevin Hinterlong Website](https://kevin.hinterlong.com)
Check it out
## Development
Prerequisites: `ruby` `gem` `bundler` then
```bash
$ bundle exec jekyll serve
```## Katex Integration
### How to use it
I've added support for [KaTeX](https://github.com/KaTeX/KaTeX). All you have to do is include `katex: true` in the YAML Front Matter
```
---
katex: true
---
```### How it works
1. The [custom header](/_includes/head/custom.html) loads the KaTeX javascript/css.
```html
{% if page.katex %}
document.addEventListener("DOMContentLoaded", function() {
renderMathInElement(document.body, {
// ...options...
});
});
{% endif %}
```