Hello, I am attempting to use the filename attribute in code blocks and expected the file name to be attached to the top of the code bock, but am unable to get it to work out of the box.
My expectation as there would be a header or some sort of span at the top with the file name, does this require a custom shortcode to implement? The below just renders correctly as a code block with dockerfile syntax highlighting
edit: lol it looks to render here without the information at the top;
The code block starts with “dockerfile,name=tor.Dockerfile”
from alpine:edge
run apk add --no-cache curl tor && rm -rf /var/cache/apk/*
run mkdir -p /run/tor \
&& chown -r tor:tor /run/tor \
&& chmod 700 -r /run/tor
copy conf/torrc /etc/tor/torrc
copy conf/entrypoint-tor.sh /entrypoint.sh
run chmod +x /entrypoint.sh
expose 9050 9051
user tor
cmd ["/entrypoint.sh"]