Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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 %}
```