{
  "slug": "simplenote-export-to-markdown",
  "name": "gizza-ai/simplenote-export-to-markdown",
  "version": "0.1.0",
  "title": "Simplenote Export to Markdown — Convert simplenote.json to .md Files — gizza.ai",
  "description": "Convert a Simplenote JSON export into clean Markdown files with titles, YAML frontmatter or #hashtags, and dates. Free, private, in your browser — no upload.",
  "tags": [
    "simplenote",
    "simplenote export",
    "json to markdown",
    "notes to markdown",
    "obsidian import",
    "yaml frontmatter",
    "note converter",
    "markdown export",
    "evernote json"
  ],
  "category": "documents",
  "urls": {
    "page": "https://gizza.ai/tools/simplenote-export-to-markdown/",
    "markdown": "https://gizza.ai/tools/simplenote-export-to-markdown/index.md",
    "descriptor": "https://gizza.ai/tools/simplenote-export-to-markdown/tool.json",
    "deep_link_example": "https://gizza.ai/tools/simplenote-export-to-markdown/?input=%7B%20%22activeNotes%22%3A%20%5B%20%7B%20%22id%22%3A%20%22abc-123%22%2C%20%22content%22%3A%20%22Grocery%20List%5CnMilk%5CnEggs%22%2C%20%22tags%22%3A%20%5B%22home%22%5D%2C%20%22creationDate%22%3A%20%222026-01-15T09%3A30%3A00.000Z%22%20%7D%20%5D%20%7D&filename_style=date-title&metadata=frontmatter&include_trashed=true"
  },
  "cli": "gizza tool simplenote-export-to-markdown '{ \"activeNotes\": [ { \"id\": \"abc-123\", \"content\": \"Grocery List\\nMilk\\nEggs\", \"tags\": [\"home\"], \"creationDate\": \"2026-01-15T09:30:00.000Z\" } ] }'",
  "tool": {
    "description": "Convert a Simplenote (or Evernote-style) JSON export into a labeled bundle of clean Markdown files — one per note, each with a title heading, tags, and dates. Auto-detects the modern Simplenote export ({activeNotes, trashedNotes}), a legacy Simplenote export, or an Evernote-style JSON array. filename_style controls the filename (date-title default, title, or id); metadata='frontmatter' (default) writes YAML frontmatter with title/created/updated/tags/pinned, while metadata='inline' appends tags as #hashtags; include_trashed=true also exports trashed notes. Output is one bundle: each file is preceded by an '==== filename ====' header.",
    "parameters": {
      "additionalProperties": false,
      "properties": {
        "filename_style": {
          "default": "date-title",
          "description": "How each note's filename is built. 'date-title' (default) prefixes the slugged title with the note's creation date (YYYY-MM-DD-title.md); 'title' uses just the slugged title (title.md); 'id' uses the note's id/key. Collisions get a numeric suffix.",
          "enum": [
            "date-title",
            "title",
            "id"
          ],
          "type": "string"
        },
        "include_trashed": {
          "default": false,
          "description": "Include trashed/deleted notes (Simplenote's trashedNotes, or notes flagged deleted). Default false — only active notes are exported.",
          "type": "boolean"
        },
        "input": {
          "description": "The JSON from your Simplenote export (simplenote.json). Also accepts a legacy Simplenote export or an Evernote-style JSON array of note objects. Paste the raw JSON text.",
          "type": "string"
        },
        "metadata": {
          "default": "frontmatter",
          "description": "How tags and dates are surfaced. 'frontmatter' (default) writes a YAML block with title, created/updated dates, tags, and pinned/markdown flags; 'inline' writes no frontmatter and appends tags as #hashtags at the bottom.",
          "enum": [
            "frontmatter",
            "inline"
          ],
          "type": "string"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}