<a id="top"></a>
<a id="what_i_meant_by_simple"> </a>
<h1>
<a href="#table_of_contents">what i meant by “simple”</a></h1>
<a id="table_of_contents"> </a>
<h2>
<a href="#top">table of contents</a></h2>
<p style="text-align:center;text-indent:0;">
<a href="#what_i_meant_by_simple"> what i meant by "simple" </a>
<br>
<a href="#table_of_contents"> table of contents </a>
<br>
<a href="#about_the_message_i_posted"> about the message i posted </a>
<br>
<a href="#what_gerald_said"> what gerald said </a>
<br>
<a href="#what_john_said"> what john said </a>
<br>
<a href="#what_i_mean_by_simple"> what i mean by "simple" </a>
<br>
<a href="#my_general_responses"> my general responses </a>
<br>
<a href="#my_code_was_also_less_than_perfect"> my code was also less than perfect </a>
<br>
<a href="#and_now_no_framework_required"> and now no framework required </a>
<br>
<a href="#what_this_code_facilitates"> what this code facilitates </a>
<br>
<a href="#on_the_matter_of_doing_sync"> on the matter of doing sync </a>
<br>
<a href="#determining_the_line_the_cursor_is_on"> determining the line the cursor is on </a></p>
<a id="about_the_message_i_posted"> </a>
<h2>
<a href="#table_of_contents">about the message i posted</a></h2>
<p>first let's look at what people said about my post.</p>
<a id="what_gerald_said"> </a>
<h3>
<a href="#table_of_contents">what gerald said</a></h3>
<p>gerald said:</p>
<blockquote>I published a simple single static HTML page
side-by-side markdown editor about a year ago.</blockquote>
<blockquote>
<a href="http://geraldb.github.io/markdown-note/note.html" target="_blank">http://geraldb.github.io/markdown-note/note.html</a></blockquote>
<a id="what_john_said"> </a>
<h3>
<a href="#table_of_contents">what john said</a></h3>
<p>john said:</p>
<blockquote>the dingus I linked to before
has side-by-side editing</blockquote>
<blockquote>
<a href="http://jgm.github.io/stmd/js" target="_blank">http://jgm.github.io/stmd/js</a></blockquote>
<a id="what_i_mean_by_simple"> </a>
<h2>
<a href="#table_of_contents">what i mean by “simple”</a></h2>
<p>i realize that i neglected to mention my operationalization for
the word “simple” in the context of that sample code i posted.</p>
<p>my goal was to demonstrate that an .html file — by itself —
is sufficient. the absence of any “framework” is thus crucial.
most people prefer to use the framework of
<i>their</i> choice.</p>
<p style="text-align:center;text-indent:0;"></p>
<hr>
<p></p>
<a id="my_general_responses"> </a>
<h3>
<a href="#table_of_contents">my general responses</a></h3>
<p>gerald, your code will be “simple” in a ruby-on-rails setting.
but anyone who doesn't know ruby-on-rails is gonna be lost.</p>
<p>and john, your dingus has a lot of bootstrap dependencies.</p>
<p style="text-align:center;text-indent:0;"></p>
<hr>
<p></p>
<a id="my_code_was_also_less_than_perfect"> </a>
<h3>
<a href="#table_of_contents">my code was also less than perfect</a></h3>
<p>of course, as i noted, the code i posted required jquery, so
it wasn't completely “pure” in terms of my now-stated goal.</p>
<p>so, as an exercise, i reworked the example just a little bit:</p>
<blockquote>
<a href="http://zenmagiclove.com/misc/sssss/side-by-side-v2.html" target="_blank">http://zenmagiclove.com/misc/sssss/side-by-side-v2.html</a></blockquote>
<a id="and_now_no_framework_required"> </a>
<h3>
<a href="#table_of_contents">and now no framework required</a></h3>
<p>you can verify this new code requires no framework at all.</p>
<p>i eliminated the jquery by converting to “vanilla” javascript.
in a “real” editor, there are enough wrinkles that jquery is
more-or-less a requirement anyway, but this is an exercise.</p>
<p>i also hand-coded a very crude conversion routine, so that
there is no need to call a converter from the internet either.
the conversion routine is embedded right there in the page.</p>
<a id="what_this_code_facilitates"> </a>
<h3>
<a href="#table_of_contents">what this code facilitates</a></h3>
<p>this allows a person to download the light-markup text itself,
and have it converted to .html
<i>client-side</i> for display there.</p>
<p>it also allows the .html file to be used in an “offline” context,
provided that you grok the resultant complications of “saving”.</p>
<p>but the cool thing is client-side conversion of the light-markup.</p>
<p>in this sense, similar rad stuff has been done by “strapdown”:</p>
<blockquote>
<a href="http://strapdownjs.com" target="_blank">http://strapdownjs.com</a></blockquote>
<p>for the strapdown version of this message, see here:</p>
<blockquote>
<a href="http://zenmagiclove.com/misc/sssss/strapdown-v2.html" target="_blank">http://zenmagiclove.com/misc/sssss/strapdown-v2.html</a></blockquote>
<p style="text-align:center;text-indent:0;"></p>
<hr>
<p></p>
<a id="on_the_matter_of_doing_sync"> </a>
<h2>
<a href="#table_of_contents">on the matter of doing sync</a></h2>
<p>john said:</p>
<blockquote>It should be possible to add some degree of syncing,
since the stmd parser includes source position information
in the syntax tree, and this could (with some changes
to the HTML writer) be included in the HTML output</blockquote>
<p>one could enable syncing in that way, most definitely.</p>
<p>i do it another way, but whatever works is worthwhile.</p>
<a id="determining_the_line_the_cursor_is_on"> </a>
<h3>
<a href="#table_of_contents">determining the line the cursor is on</a></h3>
<p>john said:</p>
<blockquote>I never did figure out how to determine using js
which line of the input source the cursor is on,
but presumably this is possible.</blockquote>
<ol>
<li> get location of the editfield cursor.
<br>
</li>
<li> get copy of text up to the location.
<br>
</li>
<li> put the copy in a dummy textarea.
<br>
</li>
<li> use dummy height to compute line.</li></ol>
<p>-bowerbird</p>
<p></p>
what i meant by "simple"
table of contents
about the message i posted
what gerald said
what john said
what i mean by "simple"
my general responses
my code was also less than perfect
and now no framework required
what this code facilitates
on the matter of doing sync
determining the line the cursor is on
first let's look at what people said about my post.
gerald said:
I published a simple single static HTML page
side-by-side markdown editor about a year ago.
http://geraldb.github.io/markdown-note/note.html
john said:
the dingus I linked to before
has side-by-side editing
http://jgm.github.io/stmd/js
i realize that i neglected to mention my operationalization for
the word “simple” in the context of that sample code i posted.
my goal was to demonstrate that an .html file — by itself —
is sufficient. the absence of any “framework” is thus crucial.
most people prefer to use the framework of their choice.
gerald, your code will be “simple” in a ruby-on-rails setting.
but anyone who doesn't know ruby-on-rails is gonna be lost.
and john, your dingus has a lot of bootstrap dependencies.
of course, as i noted, the code i posted required jquery, so
it wasn't completely “pure” in terms of my now-stated goal.
so, as an exercise, i reworked the example just a little bit:
http://zenmagiclove.com/misc/sssss/side-by-side-v2.html
you can verify this new code requires no framework at all.
i eliminated the jquery by converting to “vanilla” javascript.
in a “real” editor, there are enough wrinkles that jquery is
more-or-less a requirement anyway, but this is an exercise.
i also hand-coded a very crude conversion routine, so that
there is no need to call a converter from the internet either.
the conversion routine is embedded right there in the page.
this allows a person to download the light-markup text itself,
and have it converted to .html client-side for display there.
it also allows the .html file to be used in an “offline” context,
provided that you grok the resultant complications of “saving”.
but the cool thing is client-side conversion of the light-markup.
in this sense, similar rad stuff has been done by “strapdown”:
http://strapdownjs.com
for the strapdown version of this message, see here:
http://zenmagiclove.com/misc/sssss/strapdown-v2.html
john said:
It should be possible to add some degree of syncing,
since the stmd parser includes source position information
in the syntax tree, and this could (with some changes
to the HTML writer) be included in the HTML output
one could enable syncing in that way, most definitely.
i do it another way, but whatever works is worthwhile.
john said:
I never did figure out how to determine using js
which line of the input source the cursor is on,
but presumably this is possible.
- get location of the editfield cursor.
- get copy of text up to the location.
- put the copy in a dummy textarea.
- use dummy height to compute line.
-bowerbird