I just want to share my experience with using Scriviner with you.
I am writing my novel using Scrivener. Every now and then I post a chapter which I have finished on a website.
To do so, I first select “file” - “compile draft” - “highlight only the chapter I’m interested in” - “Export Format = Rich Text (RTF)” - “Export”
Then using Textedit program I open the RTF file and select everything and post it to the website.
My problem is that the chapter on the website looks fine when I view it on my Mac.
But when my friend views it on his PC (windows XP) all the double quote character looks like black boxes.
I track down the problem to the fact that double quote characters takes up 4 bytes instead of 1 byte on the RTF file.
To fix the problem, I have to run the following perl program on the RTF file first before copying and pasting it to the website.
perl -pi.backup -e “s/\\'9[34]/”/g" ChapterThree.rtf
What the above perl script does is to replace
[][’][9][3] with ["]
[][’][9][4] with ["]
Do you have any suggestions for me?
Thank you
Steven Siew