-
-
Notifications
You must be signed in to change notification settings - Fork 38
How to execute a command in a book generated from HTML
Oliver Tseng edited this page Aug 17, 2021
·
4 revisions
This page describes how to execute a command when creating a book from HTML. To execute a command when generating from a UBA notes file, see running UBA commands in a note file.
Insert HTML code in the following format:
<ref onclick="document.title='[UBA command]'">[Text]</ref>
Examples:
<p>
<ref onclick="document.title='CMD:::start ..\\..\\MP3'">OPEN directory in Windows</ref>
</p>
<p>
<ref onclick="document.title='CMD:::open ../..'">OPEN directory in Mac</ref>
</p>
<p>
<ref onclick="document.title='BIBLE:::KJV:::John 3:16'">John 3:16</ref>
</p>
-
Create anchor tag in target. (e.g.
<a name="bottom">
) -
Add link with hash. (e.g.
<ref onclick="document.title='Book:::notes:::appendix#bottom'">Bottom</ref>
)