Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/heavywatal/hugo-theme-reveal
📐 Hugo theme for reveal.js and remark.js
https://github.com/heavywatal/hugo-theme-reveal
Last synced: 7 days ago
JSON representation
📐 Hugo theme for reveal.js and remark.js
- Host: GitHub
- URL: https://github.com/heavywatal/hugo-theme-reveal
- Owner: heavywatal
- License: mit
- Created: 2017-08-24T14:06:38.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-17T01:44:17.000Z (about 1 month ago)
- Last Synced: 2024-10-19T03:31:49.480Z (28 days ago)
- Language: SCSS
- Homepage:
- Size: 1.76 MB
- Stars: 4
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hugo-theme-reveal: Hugo theme for reveal.js
## Options
`config.toml` of [example slides](https://heavywatal.github.io/slides/):
```toml
baseURL = "https://heavywatal.github.io/slides/"
buildDrafts = false
buildFuture = true
title = "Slide decks — Heavy Watal"
disableKinds = ["RSS", "sitemap"]
ignoreFiles = ["\\.R$", "\\.Rmd$", "\\.csv$"]
noTimes = true[markup.goldmark.renderer]
unsafe = true[markup.goldmark.extensions]
strikethrough = false[markup.highlight]
noClasses = false[services.googleAnalytics]
ID = "G-***"[params]
og_image = "https://avatars.githubusercontent.com/heavywatal"[params.author]
name = "Watal M. Iwasaki"[params.social]
twitter = "@heavywatal"[module]
[[module.imports]]
path = "github.com/heavywatal/hugo-theme-reveal"
```Example of front matter:
```toml
+++
title = "Writing an R package interface to C++ libraries with Rcpp"
date = 2018-07-15T15:00:00+09:00
type = "reveal"
draft = false
css = "style.css"
dpi = 108
+++
```