diff options
author | bobzel <zzzman@gmail.com> | 2024-05-10 14:05:01 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-05-10 14:05:01 -0400 |
commit | 4b4d77f99bd55e6de0593c3acd1cf5798ae038bf (patch) | |
tree | 0fa27b0344c4252833b9d36dbe69f172141b846e /src/client/util/RTFMarkup.tsx | |
parent | e12f79e188c32787b5749eba54183002f270f998 (diff) |
added an always option for OpenWhere lightbox. cleaned up/fixed making collections capable of being a lightbox.
Diffstat (limited to 'src/client/util/RTFMarkup.tsx')
-rw-r--r-- | src/client/util/RTFMarkup.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/util/RTFMarkup.tsx b/src/client/util/RTFMarkup.tsx index 248fda7e3..a07ad2047 100644 --- a/src/client/util/RTFMarkup.tsx +++ b/src/client/util/RTFMarkup.tsx @@ -27,10 +27,6 @@ export class RTFMarkup extends React.Component<{}> { return ( <div style={{ background: SnappingManager.userBackgroundColor, color: SnappingManager.userColor, textAlign: 'initial', height: '100%' }}> <p> - <b style={{ fontSize: 'larger' }}>(@wiki:phrase)</b> - {` display wikipedia page for entered text (terminate with carriage return)`} - </p> - <p> <b style={{ fontSize: 'larger' }}>(( any text ))</b> {` submit text to Chat GPT to have results appended afterward`} </p> @@ -107,6 +103,10 @@ export class RTFMarkup extends React.Component<{}> { {` start a block of text that begins with a hanging indent`} </p> <p> + <b style={{ fontSize: 'larger' }}>@(wiki:phrase)</b> + {` display wikipedia page for entered text (terminate with carriage return)`} + </p> + <p> <b style={{ fontSize: 'larger' }}>{`@(doctitle) `}</b> {` hyperlink to document specified by it’s title`} </p> |