I want to customize my Zathura to allow me to type #name_of_a_bookmark, hit Enter and get sent to this bookmark.
Based on the answer of another question on this site I figured out that this can be done using the map command in the zathurarc file and the command should be similar to this: map # focus_inputbar ":blist ".
Then I found out that this doesn't work because # is the symbol which starts a comment in the zathurarc file. (Using another symbol like - instead of # worked so everything else in the command is correct.)
Is there a way to escape # in the zathurarc file so I can use it for key bindings?