Joe Mooring

Results 604 comments of Joe Mooring

@oupala If you've added the theme to your Hugo project as a git submodule, you can: ```text cd themes/ananke/ git checkout 0d06863 ```

@oupala ```text hugo mod get -u github.com/theNewDynamic/gohugo-theme-ananke@0d06863 ``` Your go.mod file should then look like: ```text require github.com/theNewDynamic/gohugo-theme-ananke v0.0.0-20240418152324-0d068637ccd8 // indirect ```

> Which one is correct? Waiting on response.

@maciejcieslik, If you like this extension's code highlighting, but would prefer to disable the snippets, use the [Control Snippets](https://marketplace.visualstudio.com/items?itemName=svipas.control-snippets) extension. > Disable or enable VS Code's built-in snippets and manually...

@maciejcieslik, Another option is to disable (not uninstall) this extension, then enable it for one or more workspaces as needed. [Details here...](https://github.com/microsoft/vscode/issues/15611#issuecomment-346179926)

Current status... Desc|Contrast Ratio|WCAG Pass :--|:--|:-- Body|7.08|AAA Code blocks|6.37|AA Note shortcode|6.31|AA Changing body color from #555555 to #4e4e4e provides minimum contrast ratio of 7.0 (WCAG AAA).

Example of using the authors taxonomy to handle site and page authors. Works fine for one or many authors. ```text git clone --single-branch -b hugo-forum-topic-48874 https://github.com/jmooring/hugo-testing hugo-forum-topic-48874 cd hugo-forum-topic-48874 hugo...

> this will be documented eventually? Yes, that's why the issue is open.

#### Author You can create an `author` front matter parameter. For example: ```text [params.author] email = '[email protected]' name = 'John Doe' ``` Then access the value from a template: ```text...

There's a bit more to it, I think, in that some punctuation is retained (tilde for example). Need to dig into it a bit more.