Socket
Socket
Sign inDemoInstall

notablog

Package Overview
Dependencies
38
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    notablog

Generate a minimalistic blog from a Notion.so table.


Version published
Weekly downloads
1.6K
decreased by-24.79%
Maintainers
1
Install size
11.9 MB
Created
Weekly downloads
 

Readme

Source

Notablog

version license

Generate a minimalistic blog from a Notion table, so you can tell stories of your work with Notion.

Below are some screenshots of Alexander Wang (@dragonman225)'s blog. 🙂

MobileDesktop
Management Interface on Notion.so

Table of Contents

Getting Started

Make sure you have Node.js v15.0.0 or higher. Check with command node -v.

For existing users who want to upgrade from v0.3.x, please go through all below steps (do a clean install), except that you can continue to use your Notion table.

  1. Install Notablog.

    npm i -g notablog
    
  2. Clone the notablog-starter repository.

    git clone https://github.com/dragonman225/notablog-starter.git
    
  3. Duplicate this Notion table template.

  4. Make the table you've duplicated public and copy its URL for the next step.

  5. Go into notablog-starter/ directory, open config.json. Replace the value of url with the URL of the table you've duplicated.

  6. Inside notablog-starter/ directory, run command:

    notablog generate .
    
  7. After it finishes, go to notablog-starter/public/ directory, open index.html with a browser to preview your site.

  • Optionally, you could change the previewBrowser field in config.json to the path of a browser executable you have on your computer and issue the following command anywhere to preview.

    notablog preview <path_to_the_notablog-starter>
    

Congratulations! Your website is ready now!

  • You can copy files in notablog-starter/public/ directory to a server or upload them to any static hosting service to share your content with the world.

  • Whenever you want to update your site, go into notablog-starter/ directory and issue command notablog generate ., or issue the command from outside notablog-starter/ with the pattern notablog generate <path_to_the_notablog-starter>.

  • Some options for static hosting services:

  • Some options for self-hosting:

Blog Management Interface

This is the documentation of Notion table template

Column NameProperty TypeDescription
titleTitleThe page title.
tagsMulti-SelectTopics related to the page.
publishCheckboxDetermine if a page should be rendered.
inMenuCheckboxDetermine if a page should appear in the navigation bar.
inListCheckboxDetermine if a page should appear in the article list.
templateSelectSpecify which template to use for the page. Available template names depend on the theme you use.
urlTextA string to be used as the filename and the URL of the generated page. It should not contain / and \. If it's empty, the id of the page is used.
descriptionTextShort intro of the page. Styles are working.
dateDateUser customizable date, convenient for importing posts from other platforms or adjusting the order of posts.
  • Tip: Check publish but leave inMenu and inList unchecked to make a page seem like hidden because people can only view it when they know its URL.

API Reference

Introduction

Notablog is a command-line tool that works on a notablog-starter to generate sites. notablog-starter contains user config and customizable themes, and is used to store cached data and generated site. The design is inspired by hexo, a popular static site generator.

Folder Structure of notablog-starter

notablog-starter
├── config.json
├── public
├── cache
└── themes
    ├── pure
    └── pure-ejs
  • config.json - User configuration.

    FieldTypeDescription
    urlstringThe URL of a Notion table compatible with Notablog.
    themestringThe theme to use. It should be one of the folder names in themes/.
    previewBrowserstringThe path to the browser executable for previewing.
    autoSlugbooleanGenerate URL slugs for pages without custom ones.
    localesstring/string[]The locales which are used to generate string of a date (passed as first argument to Date.prototype.toLocaleDateString())
  • public/ - Contains generated static assets.

  • cache/ - Stores cached NAST representation of Notion pages. When running notablog generate ..., if a page is not updated since last run, Notablog use the cached data to render.

  • themes/ - Stores themes.

Theme

A theme contains layout templates, CSS files, fonts, and other assets that shapes the style and look of a blog.

Folder Structure
<name>
├── layouts
├── assets
└── manifest.json
  • <name> - Theme folder name, also the name to be used in notablog-starter/config.json.

  • layouts/ - Contains page templates. It is required to have one index layout (index.html), one post layout (post.html), and one tag layout (tag.html). You can have more templates, and a user can use them by specifying the template's filename in template column on Notion table.

  • assets/ - Other assets. Anything in this folder will be copied to notablog-starter/public/ when running notablog generate ....

  • manifest.json - Theme configuration.

    FieldTypeDescription
    notablogVersionstringSupported Notablog version.
    templateEnginestringThe template engine to use, depending on the template language you use. Currently only "ejs" is valid.
Template Language
  • Currently only EJS, but it's possible to support more since there's an interface designed for extension. Open an issue if you would like to contribute.

  • Template index.html gets the following object:

    {
      siteMeta: SiteContext
    }
    
  • Template tag.html gets the following object:

    {
      siteMeta: SiteContext
      tagName: string
      pages: PageMetadata[]
    }
    
  • Template post.html or others gets the following object:

    {
      siteMeta: SiteContext
      post: PageMetadata & { contentHTML: string } // All properties of PageMetadata plus contentHTML.
    }
    

It is highly recommended to take a look at the default theme "pure-ejs" if you want to make your own!

Notes

Code Structure

Generated by dependency-cruiser NPM package.

Project Status

See https://dragonman225.js.org/notablog-stat.html

Keywords

FAQs

Last updated on 20 Sep 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc