mgx

nanuq: from bear blog to json, markdown, or a static site

I previously made a micro tool to convert post exports to Markdown, but decided to expand it further. So here's nanuq, a micro tool to convert your bearblog.dev post_export.csv to JSON, individual Markdown files, or a complete static site. The static site export includes everything functional: bearblog default design, Atom feed, sitemap, and theme injection.

Note: nanuq isn’t about moving away from bear blog -- it’s simply a quick way to back up and repurpose your posts while keeping them accessible in multiple formats. Bear still doesn’t support Markdown exports, and while all of this could be done with scripts, I thought it’d be fun to put together a GUI to make the process easier for everyone.

Example site

nano.mgx.me

Features

Usage

  1. Visit mgx.me/nanuq
  2. Upload your post_export.csv file from bearblog.dev
  3. Choose your export format:
    • JSON: Get a single JSON file with all your posts
    • Markdown Files: Get individual markdown files for each post
    • Static Site: Get a complete, ready-to-deploy website

Export Formats

JSON Export

Markdown Export

Customizing Headers

You can customize the column headers in your export to match your existing static site generator setup. This is particularly useful if you want to:

To customize headers:

  1. In the "customize headers" section, modify the header names to match your target SSG's expected format
  2. In the "select fields to include" section, choose which fields to export
  3. Click "Reset to Default" to restore original headers

Fields to Include

The "select fields to include" section allows you to choose which fields from your CSV export will be included in the final JSON or markdown output. This is useful when you want to:

By default, all fields are selected. You can:

  1. Uncheck fields you don't want to include
  2. Use the "Reset to Default" button to restore all fields
  3. Your selection is saved in the browser for future use

JSON Export Example

When exporting to JSON, only the selected fields will be included in the output. This reduces payload size and simplifies data handling. For example:

{
  "posts": [
    {
      "title": "My Post",
      "meta_description": "meta description",
      "tags": "tags here",
      "content": "...",
      "published date": "2024-03-20T"
    }
  ]
}

Static Site Export

nanuq creates a complete, ready-to-host website from your post_export.csv

Static Site Export Options

When exporting as a static site, you can customize:

CSS Compatibility: The static site export inherits bear's HTML skeleton and CSS classes, making it fully compatible with existing bearblog.dev themes. You can paste your bear CSS directly into the Custom CSS field, and it will work as expected. This ensures a seamless transition if you're familiar with bear's design system.

HTML lang Attribute (explained)

The static site supports customizing lang attributes through:

JavaScript Injection (explained)

You can inject custom JavaScript in two locations:

Note: Currently, the static site export does not include any syntax highlighting by default. To add syntax highlighting, you can inject Prism.js or similar libraries in the "Inject JS to <head>" section. For example:

<link href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism.min.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js"></script>

Example JS usage:

<script>console.log('Hello from above!');</script>
<script src="/analytics.js"></script>

Once again, nanuq is a simple micro tool for those who write directly on bearblog.dev without backups, making it easy to keep your content safe, flexible, and almost future-proof. While nanuq is fully functional and ready to use, it is currently in beta. If you encounter any bugs or error messages, please report them to me along with your CSV file.