22 lines
384 B
Markdown
22 lines
384 B
Markdown
# Hugo Terminal
|
|
|
|
Simple Module to display a Terminal Styled Code Block. The Highlighter is set to Bash.
|
|
|
|
## Install
|
|
`./config/_default/module.toml`
|
|
```
|
|
[[imports]]
|
|
path = "git.octolabs.net/Flycro/hugo-terminal"
|
|
```
|
|
|
|
`assets\scss\custom.scss`
|
|
```css
|
|
@import 'hugo-terminal';
|
|
```
|
|
|
|
## Usage
|
|
```
|
|
{{<hugo-terminal>}}
|
|
Text to be Rendered in a Terminal Styled Window
|
|
{{</hugo-terminal>}}
|
|
``` |