sublime-evernote
sublime-evernote copied to clipboard
html tag
when I use sublime to write something and send it to evernote ,it complained that "html tag NF not allowd in evernote notes" such as when i write (for i=1;i<NF;i++) for my test , it seems to think <NF is a uncompletey html tag ,so it can not allowed to update
Yes, as it stands <NF
may be interpreted as an unfinished tag. (it may be completed by a later >
in your code).
If your intention is to put <
in your text you can escape it with <
.
If your intention is to write verbatim code you have two options:
- if you only want a note with the code, try the
Clip to new note
command - mark the code as "code" using Markdown's syntax, either inline
`like this`
or as a block with a line containing just```
marking the end and the beginning of the block.
thanks , I have found that I can write like this : (for i=0;i < NF;i++)