Template System for Make It Rain

The Make It Rain plugin includes a powerful template system that gives you complete control over how your Raindrop.io bookmarks are formatted in Obsidian notes. This guide will walk you through using and customizing templates to suit your specific needs.

Table of Contents

Enabling & Managing Templates

Enabling the Template System

  1. Navigate to Obsidian Settings → Community Plugins → Make It Rain.
  2. Toggle Enable Template System to ON.
    • This reveals options for the “Default Template” and “Content Type Templates”.

Default Template

Content-Type Specific Templates

Available Template Variables

Core Raindrop Data

Variable Type Description
id number Unique Raindrop.io ID (Alias for _id).
title string Title of the bookmark (YAML-escaped).
link string The primary URL of the bookmark.
excerpt string Summary or excerpt (YAML-escaped).
note string Your personal notes on the bookmark (YAML-escaped).
type string Raw Raindrop type (e.g., article, link).
created string Creation timestamp (ISO 8601).
lastupdate string Last update timestamp (ISO 8601).
cover string URL of the cover image.
url string Alias for link.

Collection Information

Variable Type Description
collectionId number ID of the parent collection.
collectionTitle string Name of the collection (YAML-escaped).
collectionPath string Full folder path (e.g., Group / Parent / Child).
collectionGroup string Name of the sidebar Group.
collectionParentId number ID of the parent collection (if any).

Formatted & Pre-calculated Variables

Variable Type Description
formattedCreatedDate string Created date in local format (e.g., 10/27/2023).
formattedUpdatedDate string Updated date in local format.
renderedType string Human-friendly type (e.g., web link instead of link).
domain string Website domain (e.g., google.com).
formattedTags string Tags as space-separated hashtags (e.g., #tag1 #tag2).

Lists & Loops

Variable Type Description
tags string[] Array of tags. Use with ``.
highlights object[] Array of highlights. Each has text, note, and created.

Attachments & Scraping

Variable Type Description
scrapedContent string Full article content (if Archive Scraping is enabled).
localFile string Wiki-link to downloaded file (e.g., [[document.pdf]]).
localEmbed string Wiki-embed for downloaded file (e.g., ![[image.png]]).

Essential Template Features

Displaying Variables

Use double curly braces: ``.

Helper Functions

The template system supports basic text transformation helpers:

Conditional Blocks (if)


## Description


Looping Through Arrays (each)

## Tags

- 


## Highlights

- 
  *Note:* 

Default Template Structure

The built-in default template is designed to be a comprehensive starting point, including frontmatter for Obsidian properties and a structured body.

---
title: ""
source: 
type: 
created: 
lastupdate: 
id: 
collectionId: 
collectionTitle: ""
collectionPath: ""
collectionParentId: 
tags:

  - 


: 

---


![]()


# 


## Description




## Notes




## Highlights

- 
  *Note:* 


Best Practices

  1. YAML Quotes: Always wrap string variables in double quotes in the frontmatter: title: "".
  2. Handlebars Spacing: Use single spaces within tags: , not.
  3. Escaping: The plugin automatically escapes special YAML characters in title, excerpt, and note.

Troubleshooting