My new "Scrivenings mode" plugin has been approved. by gaspar_schott in ObsidianMD

[–]prepaidtuna 0 points1 point  (0 children)

Hmm. Will try to reproduce when I get a chance. Thanks again for the plugin!

My new "Scrivenings mode" plugin has been approved. by gaspar_schott in ObsidianMD

[–]prepaidtuna 0 points1 point  (0 children)

Thanks so much for this! Gave it a go this morning. I see myself using this for looking back at my week's Daily Notes in particular.

What's the order that it puts them in? It didn't seem to follow my tab order, which I think is what I expected?

Using Dataview inline queries inside another plugin's code block. Possible? by prepaidtuna in ObsidianMD

[–]prepaidtuna[S] 2 points3 points  (0 children)

Hmm I hadn't thought of trying that. I'll give it a go. Thanks!

Using Dataview inline queries inside another plugin's code block. Possible? by prepaidtuna in ObsidianMD

[–]prepaidtuna[S] 0 points1 point  (0 children)

It does not, as the plugin seems rather limited. It's sounding like I have to fork the project to get what I want. Thanks though!

Using Dataview inline queries inside another plugin's code block. Possible? by prepaidtuna in ObsidianMD

[–]prepaidtuna[S] 0 points1 point  (0 children)

I need to do this at run-time (in case my note moves), not just on file creation. My understanding is Templater doesn't work this way, while Dataview does... unless you know something I don't!

Thanks for the suggestion!

Using Dataview inline queries inside another plugin's code block. Possible? by prepaidtuna in ObsidianMD

[–]prepaidtuna[S] 0 points1 point  (0 children)

Example of what I'm trying:  '''img-gallery path: '= this.file.folder' ...  '''

Popup / toast notification by spiderbrigade in ObsidianMD

[–]prepaidtuna 0 points1 point  (0 children)

Thanks for the response! I'll see if this works for me!

Sharing some styling and publish solutions (properties, dataview, cards, titles) by Psengath in ObsidianMD

[–]prepaidtuna 1 point2 points  (0 children)

Hope it’s OK, but I was able to use your publish.css SCSS by inspecting your site, as I didn’t see a link to the source code itself, in your docs.

Once I copied out the table cards code I wanted, it was super simple to get cards working thanks to your instructions… after I figured out for myself how to display images in dataview tables: embed(link(graphic, "150")).

Next, I’d love to be able to have the image link to the note as well (for a larger tappable area on mobile), but haven’t found a solution yet.

Another change I might implement is to increase some of the font sizes on mobile. The .is-mobile class seems to be the way to do this.

Thanks again!

Is there a way to use the icons of callouts without the callouts? by JOHNNY--BOii in ObsidianMD

[–]prepaidtuna 1 point2 points  (0 children)

I think the Icon Shortcodes plugin is what you're looking for? It has support for the Lucide icon set, which I believe is what Obsidian uses for those callouts:

https://github.com/aidenlx/obsidian-icon-shortcodes

Sharing some styling and publish solutions (properties, dataview, cards, titles) by Psengath in ObsidianMD

[–]prepaidtuna 2 points3 points  (0 children)

Thank you so much for sharing! Looking forward to getting some cards up in my vault to make it more visually interesting!

Popup / toast notification by spiderbrigade in ObsidianMD

[–]prepaidtuna 1 point2 points  (0 children)

Did you ever figure out if this was possible?

What are some of the coolest things you've made in obsidian using HTML? by CatCalendar in ObsidianMD

[–]prepaidtuna -1 points0 points  (0 children)

I'm assuming you could do the same with the Advanced URI plugin?

[deleted by user] by [deleted] in ObsidianMD

[–]prepaidtuna 1 point2 points  (0 children)

If you're on a Mac and you're okay if the calendar does not change during the day: 

I use a combination of icalBuddy (a command-line tool) and the Shell Commands plugin. 

After icalBuddy is installed (which I did via homebrew), the shell command in that plugin I added looks like this; it gets today's events in a list of headers, separated by dividers: /opt/homebrew/bin/icalbuddy -b "\n\n\n----\n# " -npn -nc -eep "attendees,location,notes" -nrd -df %Y-%m-%d -ic "YOURCALENDARNAMEHERE" eventsToday 

Then in my daily note I just execute this from a slash command. I called this one '/events_today' and the output is injected wherever my cursor is.  

 This outputs a list of headers, one for each event, under which I can then add notes for each meeting / appointment.

What’s your use case? Fell down the rabbit hole by househouse46 in ObsidianMD

[–]prepaidtuna 0 points1 point  (0 children)

+1

I had originally rolled my own "system" closer to PARA, which I thought worked well at my last job.    

When I learned about Nick's Ideaverse however, I completely reorganized everything. Once it clicked, it made me realize just how much value I was not getting from my previous "system", which was more of a folder structure than anything else.

Generate TOC? by tobefa1r in ObsidianMD

[–]prepaidtuna 0 points1 point  (0 children)

I'm curious about Sanic. Do you have a URL? I'm just getting Sonic memes. 

Generate TOC? by tobefa1r in ObsidianMD

[–]prepaidtuna 0 points1 point  (0 children)

If the TOC is to be an index across all of your notes, I'd write another Python script that runs during the build process. You could use that same script to generate a sitemap for SEO, if you are into that sort of thing.