Skip to content

A tool written in GoLang to import post from Blogger xml to Hugo

License

Notifications You must be signed in to change notification settings

atulsingh0/blogger2hugo

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Blogger2Hugo

Description

Blogger2Hugo is a simple tool to convert Blogger's xml export data into Hugo-friendly markdown format.

The tool is really basic, you just pass it the name of the file you're converting, the directory in which to output the markdown files, and optionally a piece of metadata to add to each of the posts' frontmatter (which must be a single line of valid toml, such as -extra="type = "oldPost"").

Blogger2Hugo outputs the tags, the post title, the published date, and whether or not it's a draft as standard Hugo frontmatter. In addition, the updated date is added, as well as author name and uri, and an additional value of Blogger2Hugo = true (which can be handy for having special handling in your Hugo templates for imported posts).

Finally, the original HTML content is ouput as the main content of the markdown file. Note that no processing is done on the content.. HTML is valid markdown, and it's probably best not to muck with it, so Blogger2Hugo doesn't touch it.

Note that it now supports toml and yaml, but by default it will now use yaml. If you want to support something else, feel free to make a pull request. I set up the code to be pretty easy to update to output other formats.

Getting Started

Dependencies

The latest version of Go should be installed from the Go Install page

Executing program

The program is run from the command line and requires two arguments:

  • xmlfile - The Blogger xml export file
  • targetdir - The directory to output the new Hugo formatted files

Step-by-step

  1. Open up your command line tool (Terminal on macOS)
  2. Navigate to the repository directory
  3. Run go run main.go <xmlfile> <targetdir>

Here's a typical frontmatter output:

---
title: "My cool title"
date: 2014-07-09T17:43:00Z
updated: 2014-07-22T07:11:52Z
tags: ["Hugo", "is", "awesome"]
draft: true
Blogger2Hugo:  true
author: "Joe D'souza"
---

License

This project is licensed under the MIT License - see the LICENSE.md file for details

About

A tool written in GoLang to import post from Blogger xml to Hugo

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 50.5%
  • Go 49.5%