Weather in Daily Note

Adding a one-line weather summary in an Obsidian Daily Note

OBSIDIAN

ADP

5/17/20251 min read

From the awesome wttr.in

Paste this into your Daily Note template and change the location to your own. Run with templater.
You can configure the variables based on the instructions from the developer, but I've found this works well for me:

<%*

const response = await fetch('https://wttr.in/Chattanooga?format=%l+%T:+%c+%C+%x+%t+%h+%p+%w+%P+%m');

const weather = await response.text();

tR += weather;

%>