Tag Index bookmarklet

  • Original WorkFlowy bookmarklet by Rawbytez
  • Adapted for Dynalist. Could be done cleaner with a var = new regex instead of an IF-THEN but hey, it does what I need it to do
  • Usage: navigate to the document or list you want a tag index for. Expand/collapse what you want indexed or not. Click the bookmarklet. A list of tags will appear in the search box. Cut & paste it where you want.
  • How to install: make a bookmarklet anywhere, copy the below code, edit your bookmark, delete the URL in the bookmark and paste this code there instead

javascript:(function(){var separator=" | ";var URL=location.href;if(URL.indexOf('dynalist.io/d/')==-1){return;}if(URL.indexOf('#z=')==-1){qChar='#'}else{qChar='&'};if(URL.indexOf(qChar+'q=')==-1){location.href=URL+qChar+"q="+encodeURIComponent("# OR @");}var tags=document.getElementsByClassName("Node-children")[0].getElementsByClassName("node-tag");var TagIndex='';if(tags.length>0){var i;var tagList=[];for(i=0;i<tags.length;i++){tagList.push(tags[i].textContent.toLowerCase());}tagList.sort();var tagCount={};tagList.forEach(function(x){tagCount[x]=(tagCount[x]||0)+1;});for(var tagTitle in tagCount){TagIndex+=separator+tagTitle;}if(qChar=='#'){location.href=URL.replace(/\#\=.+/,"")+'#q='+encodeURIComponent(TagIndex.slice(separator.length))}else{location.href=URL.replace(/\&q\=.+/,"")+'&q='+encodeURIComponent(TagIndex.slice(separator.length))};}else{alert("NO TAGS TO INDEX!\n\nThis bookmarklet creates an index of your tags in the VISIBLE/EXPANDED part(s) of your document.\n\nINSTRUCTIONS:\nThe index is created in the search box. Select all the text in the search box, copy, press Esc to clear the search, then paste wherever. \n\nCUSTOMIZE THE TAG SEPARATOR\nEdit between the quotes:\nvar separator=\""+separator+"\"\nFor the highest density use a single space or a single colon.\n\nOriginal WorkFlowy bookmarklet by Rawbytez; adapted for Dynalist by Ruud\n");location.href=URL;}})();

4 Likes

Unfortunately, this isn’t working for me. I was careful to paste in the script in its entirety, and use it on several expanded documents.

The document becomes blank, with the exception of the first Header, which remains on top. I’ve used some of Rawbytz’s scripts on Workflowy on iOS Safari, which have been wonderful.

And there is no text in the searchbar?

No text appears in the search bar.

Got it working! Once I tap the magnifying glass to expose the search bar, all the tags show up!

Thanks for clarifying- it’s a useful function for me.

1 Like

Thanks for this. Working fine for me.

1 Like

I’ve never used this tool from workflowy before, so i had to look it up

So to my understanding, is this what it does?

  1. Create the chrome bookmark with that value above as the URL address. I pasted the contents from Rawbytez below:

http://pastebin.com/EdZrYXv8

  1. Search the specific list view of where you want to extract all childbulletpoint tags out (Even ones that are hidden)

  2. Click the chrome bookmark

  3. A list of all tags with a set of delimiters is made in the search bar

  4. Copy the contents, paste, and now you have a tag cloud?

So this is kind of like evernote’s tag pane system?

Basically, I can actually actively document and keep track of what tags I have made on any view of any document?

EDIT Okay I see now , it only works on visible items . Is there a way I can create a tag of everything I’ve made in a document, asides opening up every bulletpoints I’ve made to get to that list view (e.g. getting hidden child tags)

The bookmarklet tries to do this by searching for tag characters. The search string looks like this:

# OR @

This makes all tags visible in WorkFlowy. That search string doesn’t seem to work the same way for me in DL, so yeah it looks like expanding everything is the only way.

well I guess its good if I don’t have that many nested bulletpoints to begin with or have a really long document on one level

Minor addition: formatted the code https://pastebin.com/GCRzFPLS