Hi, I'm sorry if this is a question with an obvious answer, but I haven't found one yet: is it possible to use attributes inside of code blocks? If so, how? What I'd like to be able to do is this:
= Some Document
:current_installer_version: 1.2.3
...
== Installing
To install, do this:
[source, sh]
----
wget
http://some.url/myprogram_installer-{current_installer_version}.tar.gz
tar zxvf myprogram_installer-{current_installer_version}.tar.gz
----
Is that possible?