Re: How to escape square brackets in asciidoctor video file name?
Posted by
mojavelinux on
May 16, 2020; 8:27am
URL: https://discuss.asciidoctor.org/How-to-escape-square-brackets-in-asciidoctor-video-file-name-tp8005p8006.html
You can either use the startsb attribute:
video::testvideo{startsb}a].mkv[start=03:55,end=04:05,height=400]
or URL encode the character:
video::testvideo%5Ba].mkv[start=03:55,end=04:05,height=400]
> With passthrough,still doesn't work:
The passthrough declaration is not recognized in this context.
Best Regards,
-Dan
On Sat, May 16, 2020 at 2:13 AM documentationchronicles [via Asciidoctor :: Discussion] <
[hidden email]> wrote:
Hi there. I am trying to escape square brackets in my asciidoctor video filename. I tried Passthrough(++) but browser still cannot find file.
This works:
video::testvideo.mkv[start=03:55,end=04:05,height=400]
This doesn't work:
video::testvideo[a].mkv[start=03:55,end=04:05,height=400]
With passthrough,still doesn't work:
video::++testvideo[a].mkv++[start=03:55,end=04:05,height=400]
--