Here's what I came up with. I did not see the second solution until later, so I used the first. I inserted the following code into a template:
<$edit-text tiddler=<<tiddler>> field="text" class="tc-edit-texteditor tc-edit-texteditor-body" placeholder={{$:/language/EditTemplate/Body/Placeholder}} tabindex={{$:/config/EditTabIndex}} focus={{{ [{$:/config/AutoFocus}match[text]then[true]] ~[[false]] }}} cancelPopups="yes"><$set name="targetTiddler" value=<<currentTiddler>> ><$list filter="[all[shadows+tiddlers]tag[$:/tags/EditorToolbar]!has[draft.of]]"><$reveal type="nomatch" state=<<config-visibility-title>> text="hide" class="tc-text-editor-toolbar-item-wrapper"><$transclude tiddler="$:/core/ui/EditTemplate/body/toolbar/button" mode="inline"/></$reveal></$list></$set></$edit>
In a second tiddler, or third, or whatever tiddler decide needs to apply this function, I calle the template as follows:
<$set name="tiddler" value={{Name of tiddler to be referenced}}>
{{||Name of Template}}
I plug the title of the tiddler that I wish to edit into the field transcribed in the $set function above. A point of interest, this could be used to apply the tool bar to fields other than 'text' by modifying the 'field' attribute of the edit-text function contained in the first tiddler mentioned above: '<$edit-text tiddler=<<tiddler>> field="text"'
This solution is working for me right now; although I'm sure that it can be improved upon. Thank you for the help.
Merv