All Projects β†’ johno β†’ Digital Garden

johno / Digital Garden

🌻[WIP] Gatsby Theme to build your own digital garden 🌻πŸ₯€πŸŒΈ

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Digital Garden

Leerob.io
✨ My portfolio built with Next.js, MDX, Tailwind CSS, and Vercel.
Stars: ✭ 1,369 (+530.88%)
Mutual labels:  mdx
Mdx
Markdown for the component era
Stars: ✭ 11,948 (+5405.99%)
Mutual labels:  mdx
Fastwordquery
Query words definitions or examples etc. from local or web dictionaries to fill into Anki cards.
Stars: ✭ 159 (-26.73%)
Mutual labels:  mdx
Vscode Mdx Preview
MDX Preview for Visual Studio Code
Stars: ✭ 103 (-52.53%)
Mutual labels:  mdx
Mdx Deck
♠️ React MDX-based presentation decks
Stars: ✭ 10,487 (+4732.72%)
Mutual labels:  mdx
React Code Blocks
React code blocks and code snippet components
Stars: ✭ 135 (-37.79%)
Mutual labels:  mdx
Gatsby Starter Portfolio Minimal
A Gatsby Starter to create a clean one-page portfolio with Markdown content.
Stars: ✭ 100 (-53.92%)
Mutual labels:  mdx
Remark Codesandbox
🎩 Create CodeSandbox directly from code blocks
Stars: ✭ 204 (-5.99%)
Mutual labels:  mdx
Mdx Embed
Embed 3rd party media content in MDX - no import required 🧽
Stars: ✭ 119 (-45.16%)
Mutual labels:  mdx
Lib React Hooks
General purpose React hooks library βš›οΈ
Stars: ✭ 145 (-33.18%)
Mutual labels:  mdx
Mdict Java
Query library for Mdict (mdx or mdd) , a popular dictionary file format.
Stars: ✭ 106 (-51.15%)
Mutual labels:  mdx
Component Docs
πŸ“ Simple documentation for your React components
Stars: ✭ 116 (-46.54%)
Mutual labels:  mdx
X0
Document & develop React components without breaking a sweat
Stars: ✭ 1,706 (+686.18%)
Mutual labels:  mdx
Server Components Mdx Demo
React server components + MDX
Stars: ✭ 102 (-53%)
Mutual labels:  mdx
Tailwind Nextjs Starter Blog
This is a Next.js, Tailwind CSS blogging starter template. Comes out of the box configured with the latest technologies to make technical writing a breeze. Easily configurable and customizable. Perfect as a replacement to existing Jekyll and Hugo individual blogs.
Stars: ✭ 166 (-23.5%)
Mutual labels:  mdx
Gatsby Theme Chronoblog
⏳ Chronoblog is a Gatsbyjs theme specifically designed to create a personal website. The main idea of ​​Chronoblog is to allow you not only to write a personal blog but also to keep a record of everything important that you have done.
Stars: ✭ 101 (-53.46%)
Mutual labels:  mdx
Droidsound
Droidsound-E. Download links in README.md
Stars: ✭ 136 (-37.33%)
Mutual labels:  mdx
Xdm
a modern MDX compiler. No runtime. With esbuild, Rollup, and webpack plugins
Stars: ✭ 206 (-5.07%)
Mutual labels:  mdx
Awesome
A curated list of awesome MDX resources
Stars: ✭ 195 (-10.14%)
Mutual labels:  mdx
Gatsby Theme Catalyst
An opinionated set of integrated themes and starters as a boilerplate to accelerate development with GatsbyJS
Stars: ✭ 144 (-33.64%)
Mutual labels:  mdx

🌻 [WIP] Digital Garden

Digital Garden is a content-first project meant to make it easier to write and curate content on the web. This is a project I've built for myself but hope it can be useful for other folks looking to create their own gardens that leverage the open web. You can use components in your content seamlessly using MDX which is rad for writing.

Motivation

I was inspired by numerous posts that struck a chord. At the time of writing this I had roughly 100 WIP blog posts and essays that were sitting, hidden in a local directory: ~nt.

With a nice digital garden, content can be fun again. With MDX you can now write dynamic and immersive content that can show rather than tell. I've found myself writing a lot more, and want to make it easy as hell to share that content with the community. With a digital garden I can share thoughts with folks without having to copy pasta the material to a GitHub Gist.

Installation

Install the libraries that are needed:

yarn add gatsby gatsby-theme-digital-garden react react-dom

Usage

Create a gatsby-config.js that uses the gatsby-theme-digital-garden theme:

// gatsby-config.js
module.exports = {
  plugins: [
    {
      resolve: 'gatsby-theme-digital-garden',
      options: {}
    }
  ]
}

Project structure

site
β”œβ”€β”€ gatsby-config.js
β”œβ”€β”€ package.json
β”œβ”€β”€ pages
β”‚   └── index.md
β”‚   └── contact.md
β”œβ”€β”€ posts
β”‚   └── my-first-post.md
└── wiki
    β”œβ”€β”€ music
    β”‚   └── list.md
    └── thoughts
        β”œβ”€β”€ thoughts-1.md
        └── thoughts-2.md

Ordering your content

⚠️ Not yet implemented

Only the journal feature uses chronological order by default since it's meant to be a long running diary of ideas. The posts and wiki categories default to alphabetical but allow for you to set a priority. The priority key is used to sort. The higher priority number wins.

---
title: My wiki page
priority: 9999
---

πŸ›° Future

This project is nowhere close to completed. There are numerous things on the horizon like:

  • Content ordering
  • Wiki index page
  • Typography theming
  • Layout theming
  • Custom colors
  • Projects section (portfolio)
  • Post archive

Built with

Related

These following posts served as an inspiration to start this project.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].