ok I have had a play with some of this. Being a windows (at work) and linux (at home) man I need to solve both and also being someone who would like to get the formating nice i head down this muddy path. Id also like to add here that one of the reasons for this is while the scholars canvas is terrific (im not having a go at the Excellent Strolen site at all!!) its slow to flick from edit to publish view and the spell check is also another extra click. (unless like winxp you have form inline spell check on)
Things I feel an offline editor needs.tabbed viewing of source view/published view
leave html tags as is (dont auto expand)
windows and linux compatible
inline spell check
allow cut n paste from editor to scholars canvas without the need to post format
cut n paste scholars canvas to editor.. (always complete a circle
Things I dont expect to solvethe various ways to link Strolen's bits. ie the square bracketed mumbo jumbo
im keeping this as a single sub, editor, not attempting to recreate the interlinking stuff off site. I cant see the point.
I tired a few (free) html editors. Note all are win/linux compat.
Kompozer (small neat and easy to fire up)
Mozilla composer (part of the mozilla suite)
Open office -writer html (large suite but if your using it already? why not)
Word (massive, ugly, microsoft, need i say more) anyway its not free
Test ProcedureI wrote a little test sub with all the various html tricks as outlined in the scholars canvas
HTML help using the
editor under tests source view. This generally required me to insert the test sub between the
body tags. Most editors filled in the basic html headers when a new page was created. This wasnt too bad. I just ignored it. Like a good Aussie beach goer, just swim between the flags

Switch tabs in the editor to see the "published" view. kewl!! looks as expected. Except for the blockquote and background colors of course. No doubt fixable if you really want it.
I cut n pasted the test sub as written in the editors source view into Scholars canvas and hit preview.
Again pretty much what I expected except for one major thorn. The
character and handling of carriage returns.
FindingsIn
Source view most editors are verbatim. If its there its used if it isn't its not. I don't want to get into html and how it handles line lengths here but briefly, there is no line feed or carriage return in html unless the
br tag is encountered.
Hello
goodbye
Mr<br> Chips
the Hello goodbye above would preview on the same line while the Mr Chips would be on two lines.
OK whats it all mean?
Well the scholars canvas seems to add an extra cr in somewhere
...end of paragraph.
<em>A new title</em>
Some more text...
Something as simple as this in scholars canvas equates to:
...end of paragraph.<br>
<em>A new title</em><br>
Some more text...
in the editors source view.
BUT while the scholars canvas produces the wanted
...end of paragraph.
A new title.Some more text...
The source code as above pasted into the scholars canvas and then previewed ends up with extra cr
...end of paragraph.
A new title.Some more text...
And if you dont use the
br in the editors source view then the editors published view put the text like this
...end of paragraph.
A new title.Some more text...
AGHHH!!
When cut n pasted into the scholars canvas the line lengths are also all messed up. Page width messes with the line lengths another possible lf cr problem. Preview mode fixes this somewhat but something somewhere does not ring true.
SummaryAn html editor can be used but it still causes some transferal formatting problems and as this is the main reason for using html ed offline it kind of defeats the purpose.
If we could resolve the cr lf problems I believe it would help us all. Not that having a better editor would help the content of a sub of course:) but for us lower literary folk we need all the help we can get to create our minorpieces!!