Examples
- Can I create search nodes using Tana Paste?Sep 26, 2024
Yes you can: We have a basic syntax for this which you can read about here.
Example of a task search:
%%tana%%
- %%search%% Fei's tasks
- OR::
- [[#task]]
- [[#CS todo]]
- Assigned to::
- [[Fei-Ling Tseng]]
- NOT DONEWhen I paste the above, this is the result:
- How to use Tana Paste with supertags that have non-alphanumeric characters?Sep 26, 2024
Tana Paste can usually parse supertags that are one word, such as
#task
. If a supertag has spaces, numbers or irregular characters, try wrapping the name in double brackets like this:#[[1'3$4'6]]
If you want to grab the supertag definition, include the hashtag within the brackets, like this:
[[#1'3$4'6]]
- How can I add supertags on things that I send from Tana Capture?Sep 26, 2024
While it isn't possible to tag things when you're sending things from Tana Capture, you can have Tana do some post-processing magic to convert written-out tags to real tags once they arrive the Inbox—no AI needed!
- This method uses a simple Tana Paste command that you can run on the Inbox node, which targets all new children that have "#" in them.
- Once you've created the command, you must add it to the
On child added
section of the Inbox node. You can find it by running the commandDebug node
on the title of the Inbox.
Here's Theo describing the command:
"All it does is paste the nodes that have # in them and that are not tagged, using Tana Paste.
Say we add this through Tana Capture:
buy milk #todo
The command will paste that exact text back in with Tana Paste, where
${name}
isbuy milk #todo
and${sys:content}
are any child notes that are present. Using Tana Paste,#todo
will be added as a tag.Note: this creates a new node, so the created date will change, meaning you’ll lose the time that the node was captured through Tana Capture."