I have a pretty basic site with the following markdown (/content/documentation/_index.md
)
+++
title = "Documentation"
draft = false
+++
- Check the [Latest doxygen documentation](http://pongasoft.github.io/jamba/docs/{{ .Site.Params.jambaLatest }}/html/index.html)
- The [jamba-sample-gain](https://github.com/pongasoft/jamba-sample-gain) project was designed as a documentation plugin for this project.
- The [vst-vac-6v](https://github.com/pongasoft/vst-vac-6v) plugin is built with Jamba.
- The [vst-ab-switch](https://github.com/pongasoft/vst-ab-switch) plugin is built with Jamba.
- The [vst-sam-spl-64](https://github.com/pongasoft/vst-sam-spl-64) plugin is built with Jamba.
- The [Announcing Jamba](https://www.pongasoft.com/blog/yan/vst/2018/08/29/Announcing-Jamba/) blog post goes into more details about the history and the main features of the framework.
and it is not being rendered properly because the {{ .Site.Params.jambaLatest }}
is not being processed.
So a few questions:
- is there a way to configure hugo so that it will also template process markdown files like it does for html file?
- if not then what is the proper/recommended way to do this with hugo?
Thanks for the help
Yan