Addendum:
upon careful re-reading of your OP, you want to *display* the section
content inline, just without rendering the surrounding section
delimiters. This can be done by embedding a <<tiddler>> macro
following the <<editSection>> macro, like this:
----
<<editSection [[##My Notes]]>><<tiddler [[##My Notes]]>>/%
!My Notes
some text
!%/
----
Note: By default, the TWCore <<tiddler>> macro doesn't know how to
process the abbreviated [[##sectionname]] syntax, and will blindly
treat it as a literal tiddler named "##sectionname", rather than a
reference to a section of the current tiddler.
Currently, to add the abbreviated syntax handling to the <<tiddler>>
macro, you can install either of these plugins:
http://www.TiddlyTools.com/#SectionLinksPlugin
http://www.TiddlyTools.com/#PasteUpPlugin
I'm also considering adding the same extension to the <<tiddler>>
handler directly into EditSectionPlugin, so that you won't need to
install another plugin to get support for "intra-tiddler section
references".
However, in the long run, I think that this feature would best be
added directly to the TWCore and applied to handlers for <<tiddler>>,
<<tabs>>, <<slider>>, etc., so that hidden sections can easily be used
to embed sliders or tabsets that are stored in the same tiddler,
rather than needing separate tiddlers to define the content of each
slider/tab.
your thoughts?
-e