I’m genuinely grateful that you’ve added support for asciidoc. Based on my reading of the docs and these topics, it seems like Hugo does not support asciidoc syntax highlighting for code blocks, like the example shown below.
Is that true?
[source,yaml]
----
apiVersion: v1
data:
.dockerconfigjson: xxxxx
kind: Secret
metadata:
annotations:
build.shipwright.io/referenced.secret: "true"
name: secret-docker
type: kubernetes.io/dockerconfigjson
----
Is there a better workaround than using non-asciidoc-native {{highlight}}
shortcode, shown here?
{{< highlight yaml >}}
apiVersion: v1
data:
.dockerconfigjson: xxxxx
kind: Secret
metadata:
annotations:
build.shipwright.io/referenced.secret: "true"
name: secret-docker
type: kubernetes.io/dockerconfigjson
{{< /highlight >}}