You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to import Markdown files of notes containing code blocks. The Notesnook importer unfortunately escapes HTML characters inside code blocks.
Example Markdown code fragment in the original file:
# Get local user's public key into the remote system's authorized_keys
ssh-copy-id -i /home/$USER/.ssh/id_rsa.pub $USER@$REMOTE
Here is how the same lines appear in the imported Notenook note:
# Get local user's public key into the remote system's authorized_keys
ssh-copy-id -i /home/$USER/.ssh/id_rsa.pub $USER@$REMOTE