Git Product home page Git Product logo

makeitmarkdown's Introduction

Make It Markdown - Markdown-based Websites Guide πŸš€

Learn how you can build markdown-based websites, docs, knowledgebases and more -- and why a markdown-based approach is awesome πŸ¦Έβ€β™€

(Start Learning)

Tutorials

Tutorial 1: Create a website from scratch using markdown and PortalJS

In this tutorial we will walk you through creating an elegant, fully functional website written in simple markdown and published with PortalJS.

By the end of this tutorial you will:

  • have a working markdown-based website powered by PortalJS.
  • be able to edit the text and add pages, all from an online interface without installing anything.

Below is a screenshot of how the final website will look like: ![[tutorial-1-result.png]]

Setup a sandbox website including live publishing

  • Prerequisites: sign up for GitHub and Vercel
  • Navigate to datopian/flowershow repository
  • Click on "Deploy"
  • Let the site build on Vercel
  • Visit the site! Yay! Your site is working! πŸŽ‰

Now, let's edit the front page

  • Navigate to content/index.md file in the site repository
  • Add some text to it
  • Save and watch the site redeploy
  • Visit the site! Yay! Your changes are live! πŸŽ‰

Let's add a page: e.g. about page

  • Navigate to the content folder in the site repository
  • Add about.md file with some text
  • Save and watch the site redeploy
  • Visit the site! Yay! Your changes are live! πŸŽ‰

Tip

Read full tutorial [[create-a-website-from-scratch|here!]]

Tutorial 2: Editing your site locally on your computer

In this tutorial, we will walk you through the process of editing your Flowershow website locally on your computer.

By the end of this tutorial, you will:

  • Understand what is Markdown and why you should use Obsidian to edit content on your Flowershow websites in most cases.
  • Gain a deeper understanding of working with Git and GitHub Desktop.
  • Learn how to clone your website's repository to your computer.
  • Learn how to edit content using Obsidian and what are the benefits of it.
  • Learn how to commit (save) your changes locally and push them back to the GitHub repository.

Below is a screenshot of how the final website will look like:

![[tutorial-2-result.png]]

Clone the repository to your computer

  • Setup GitHub Desktop app with your GitHub account
  • Grab your site's repository URL
  • Open GitHub Desktop app and clone the repository
  • Yay! You have a copy of your website's repository on your computer! πŸŽ‰

Now, let's edit in Obsidian

  • Open the /content folder of the cloned repository in Obsidian
  • Edit the home page and the about page
  • Create a folder with the reviews of books you've read

Commit your changes

  • Commit the changes in GitHub Desktop app
  • Push the changes to the remote repository
  • Watch the site redeploy
  • Visit the site! Yay! Your changes are live! πŸŽ‰

Tip

Read full tutorial [[edit-a-website-locally|here!]]

Tutorial 3: Collaborating with others on your website project

In this tutorial, we will guide you through collaborating with others on the same website project using GitHub.

By the end of this tutorial, you will:

  • Understand what a branch is and how to create one.
  • Understand what a pull request (PR) is and how to create one.
  • Learn how to review and merge a PR.
  • Know how to resolve conflicts if they arise.
  • Collaborate with others using GitHub, following best practices.

Create a new branch

  • Navigate to your site's repository on GitHub
  • Click on the 'Branch' dropdown menu, type a new branch name and press Enter
  • Yay! You've created a new branch! πŸŽ‰

Now, let's make changes in the new branch

  • Switch to the new branch in GitHub Desktop
  • Open the /content folder of the repository in Obsidian
  • Edit the about page
  • Commit the changes in GitHub Desktop app and push them to the remote repository on GitHub

Create a pull request (PR)

  • Go back to your site's repository on GitHub
  • Click on 'New pull request'
  • Select your branch from the dropdown menu
  • Write a brief description of your changes, then click on 'Create pull request'
  • Yay! Your changes are ready to be reviewed! πŸŽ‰

Review and merge a pull request

  • Navigate to the 'Pull requests' tab in your repository
  • Open the newly created pull request
  • Review the changes, add comments if necessary
  • If everything is in order, click 'Merge pull request', then 'Confirm merge'
  • Yay! You've merged your changes into the main branch! πŸŽ‰

Resolving conflicts

  • In case of conflicts between your changes and those on the main branch, GitHub will alert you
  • Follow the on-screen instructions to resolve the conflicts and merge your changes

Tip

Read full tutorial [[collaborate-on-website-project|here!]] (TBD)

Tutorial 4: Customising your website locally and previewing your changes locally

In this tutorial, we will dive into the more technical aspects of website customisation, but this time, everything will be done locally. You'll learn how to preview your site on your own machine before pushing changes to the live site, ensuring everything looks and works exactly as you want.

By the end of this tutorial, you will:

  • Understand how to preview your site locally.
  • Know how to change your website's title and description.
  • Learn how to customise your website's appearance using Tailwind themes.
  • Understand how to configure the navbar, navigation links, and logo.
  • Learn how to integrate Google Analytics into your website.
  • Be aware of additional customisation options for deeper customisation.

Previewing the site locally

  • Navigate to your website's repository directory on your computer using command line
  • Install the site's dependencies
  • Start the local development server
  • Visit the local address displayed in your command line. Yay! You can now preview your changes locally, live! πŸŽ‰

Changing the site title and description

  • Perfect! You've personalised your site's title and description! πŸŽ‰

Configuring the title, description and navbar

  • Open the content/config.mjs file in your code editor
  • Edit the title and description fields
  • Edit the fields in the navbar field to customise your navbar's title and logo. Then, add navigation links to navLinks field (these will be displayed in the navbar). Save and refresh your local site to see the changes.

Integrating with Google Analytics

  • Still in the content/config.mjs file, navigate to the analytics field
  • Enter your Google Analytics tracking ID, save and refresh your local site to ensure it's integrated correctly
  • Excellent! Your website is now integrated with Google Analytics! πŸŽ‰

Customising the Tailwind theme

  • Open tailwind.config.js file in your code editor
  • Change the light and dark theme colours and fonts to your liking, save and refresh your local site to see the changes
  • Awesome! Your website now has a new look! πŸŽ‰

When you're happy with all your changes, use GitHub Desktop to commit your changes and push them back to your GitHub repository.

In addition to these topics, the full tutorial shows you what other customisations options are available and where to find information on these.

Tip

Read full tutorial here! (TBD)

Howtos

  • [[quickly-create-a-sandbox-website|How to quickly create a sandbox website]]
  • [[edit-text-on-a-single-md-page|How to quickly edit text on a single Markdown-based page]]
  • [[add-a-simple-md-page|How to add a simple Markdown page]]
  • [[blog/edit-or-add-md-pages-locally|How to edit or add Markdown-based pages locally on your computer]]
  • [[how-to-add-images-to-a-md-page|How to add images to a Markdown-based page]]
  • [[publish-obsidian-vault-to-github|How to push an Obsidian vault to a GitHub repository]]
  • [[create-a-simple-catalog-of-anything|How to create a simple catalog of anything in Obsidian]]

makeitmarkdown's People

Contributors

elisapaka avatar rufuspollock avatar

Stargazers

Shyam Peri avatar  avatar  avatar

Watchers

Anuar Ustayev (aka Anu) avatar

makeitmarkdown's Issues

[inbox] Existing materials as of Dec 2023

Design

Content

Content

  1. 4 of 7

How to push my Obsidian vault to GitHub?

Acceptance

  • a how-to explaining the process of publishing an Obsidian vault to a GitHub repo, using GitHub desktop app

Tasks

Internal video

Tasks

Notes

We have a first attempt, so we know what are the pain points

https://drive.google.com/file/d/1uHWC5KuzkdcQQbra1IULmww-SNJsWpv2/view
https://drive.google.com/file/d/1j1VpRrsJcyo6N0D3d7KyflEp-7Rp-RQz/view

Covers:

  • creating a new empty repository on GH
  • initializing GH repo in the local folder with notes (e.g. vault)
  • pushing to the remote repo

[EPIC] Editor guide: how to contribute content and datasets

Create a first editor guide for adding and editing conten to a markdown-based site -- specifically a markdown-based, flowershow-published site and even more specifically a "MOGF" (markdown-obsidian-github-flowershow built site).

Outcome visioning 🎯 (High level acceptance)

A non-dev editor/author at Life Itself or anywhere else has a single online place to go to with (or linking to) sufficient docs to autonomously (i.e. without dev support) ...

  • Edit lifeitself.org
    • Create a new blog post
    • Create a new page
    • Edit a blog post or page
  • Create, share and publish a micro-catalog
    • Create locally
    • Share with others (privately)
    • Publish
  • Create a digital knowledge garden i.e. content + catalogs etc

Plan of work

Prep

Tasks

  1. duplicate
    olayway
  2. documentation
    rufuspollock

Content

https://coggle.it/diagram/ZG5bpZ-I6DjyVLxZ/t/editor-guide-latest-this-part-is-initial-2023-5-24-14-01

Misc

  • Reference from any other locations e.g. life itself tao, datopian playbook etc
  • Deprecate any existing guides in favour of this if possible

How to debug and fix 404 errors?

Acceptance

TBD

Tasks

No tasks being tracked yet.

Rough steps:

  1. Try to locate the underlying markdown file of the page you're trying to access (e.g. through clicking on some link) to see if it exists
    2 If it's there, check the spelling
  2. If it's not there, see if you can find it in another place in the repo and adjust the links accordingly
  3. If this didn't help, this might be an issue in your forntend app?

How to edit a single page on a LifeItself website

Job story

As a new contributor to a Flowershow/PortalJS site (e.g. LifeItself.org), I want to edit an existing page on the website (whose contents are stored on GitHub), i.e. add/change some text, edit/add links to other pages, and/or add images to it so that the page is updated.

  • What does this contributor know ...?
  • Assume (but flag) you have edit access to the relevant repo/system (i.e. don't explain the process of getting the access in the tutorial)
  • Any website that is markdown based with jam-stacky tendencies would be relevant here, not only Flowershow based one
  • There is going to be a sandbox that readers can use when following the tutorial. A sandbox is a single instance of a simple Flowershow website with a few example pages. Assume this sandbox is already set up including automatic deployment.
  • Will there be a live preview somewhere? No, not for now.
  • ❗️ For now, add any terms/concepts explanations in e.g. Obsidian info callouts. They will form the basis of relevant sections in our Contributors Guide in the future.

Tasks

Transfer here "create a simple catalog of anything using markdown"

Acceptance

Tasks

Migrate content from portaljs.org/guide to this site

Which itself was migrated from markdownbased site - see datopian/datahub#994

Content to migrate is therefore likely covered in this PR datopian/datahub#996 i.e. guide page plus some howtos.

Acceptance

  • Migrate content from portaljs βœ…2023-12-20 DONE: see next two items:
    • Identify content βœ…2023-12-20 DONE: see detailed list of items in tasks section below
    • Add the content βœ…2023-12-20 DONE: see updates on items list in tasks section below
  • Also check if anything left on markdownbased https://github.com/datopian/markdownbased that should move (and then close that down) βœ…2023-12-19 did this in #8

Finally

  • Remove from portaljs.org (and add redirect?) ❌2023-12-21 WONTFIX. I think we should delete only once Makeitmarkdown is complete, as backup in case anything goes wrong or we need to reference something. Added this to inbox of outstanding tasks to revisit later

Tasks

  • Make list of things to migrate See tasks below
  • Migrate content (Done this via Obsidian)
    • guide index page See flowershow
    • guide index page images (Is there a way to do this that doesn't involve manually downloading each image from GitHub and importing into Obsidian?)
    • tutorial pages See tutorial 1 and tutorial 2. Tutorials 3 and 4 have not yet been written
    • tutorial pages images
    • howtos See links to 6 howtos at the bottom of the index page

Editor guide: Review and recommend for integration existing polished documentation

Review and recommend for integration the existing polished documentation we already have - see list below

Acceptance

  • List what do we already have: url, title and summary βœ…2023-10-31 see below
  • What could we integrate? Make recommendations e.g. below ... βœ…2023-10-31 ❌ we did not have any recommendations at the time
  • Flag that info for relevant tutorials (in the issue or to team member etc) βœ…2023-10-31 ❌ i think we did use some parts plus we published directly some parts

Tasks

Review each of these

βœ… DONE: Title + Summary for each resource (excluding one with restricted access)

Recommendations

Spacing on mobile view

Hey there! Seems there isn't any spacing on the left side when opening the site from a phone

Screenshot_20240111-123429_Brave

For some phones, it makes it hard to read as the screen might curve a bit. Since the right side seems to have a border, it would be nice to have it to on the left!

Feel free to close if the design is intended though!

Outstanding tasks to revisit towards the end of the project

An inbox for keeping track of outstanding tasks that are currently paused.

Acceptance

  • The following tasks have been completed (if still relevant)

Tasks

  • Remove tutorial content from portaljs site and add a redirect to makeitmarkdown (see final acceptance point here)
  • Remove howtos content from portaljs site and add a redirect to makeitmarkdown (see final acceptance point here)
  • Transfer any images that we have decided to keep from the portaljs repo to makeitmarkdown (see comment here)
  • Remove 'content' folder in makeitmarkdown repo and move its contents up a level (see Rufus' comment here) 2024-01-04 UPDATE: Have asked Ola for help on how to do this without breaking links to contents inside the folders

[inbox] FAQs / Howtos to answer

Inbox

Put text on the web

Publish Collections

  • How to propose changes to someone else's website
  • How to edit the people page
  • How to debug and fix 404 errors
  • How to hide a Markdown-based page without removing it from the content folder
  • How to add a signup form
  • How to theme the website
  • How to redirect pages
  • How to add tables, charts, or maps
  • How to create and use custom React components in Markdown pages?

From specific people

Nathen https://github.com/orgs/life-itself/discussions/393#discussioncomment-5460864

How to correct a pull request

One thing I keep getting stuck on is how to not include changes into a pull request and to remove those changes as if they didn't happen. For now I just commit and then do the fixes, but this seems inefficient.

Other questions

  • How to make two different pulls requests
  • How do we symlink pages. And what is symlinking?
  • How to update the teams page
  • How to use components πŸ’¬2023-05-24 relevant for using components provided by that platform
    • How to create and use bespoke components? βœ…2023-05-24 ❌ not so relevant as we don't support bespoke components so much
  • How to use tailwind
  • How to use css
  • How to redirect pages

Zaib https://github.com/orgs/life-itself/discussions/393#discussioncomment-5502358

I have learned how to use Obsidian from Nathen, he showed me how to use it and we recorded the video. I followed the video later to create the project pages and people page. The problems I encountered are:

  • A clear understanding of the flow of Syncing the Fork, Pull origin, and push origin and creating the pull requests.
  • How to add images from Vault
  • How to add internal and external links
  • how to edit the people page
  • The protocols around making edits in Obsidian, for instance, I had to delete the image from the vault when I removed it from one of the pages, I didn't know this from the start.
  • Lastly, the protocol around updating the Issues in the "current iteration" in Backlog All.
  • On-going Problem: How to fix merge conflicts

I have a clear understanding of these right now, but in the start it was confusing. A walk-through guide in navigating GitHub and Obsidian would be very helpful for people just getting started.

Rufus https://github.com/orgs/life-itself/discussions/393#discussioncomment-5461119

From Lauren - Aug 2023

Useful How to's for newer members of the team, or less frequently completed actions

  • Add a page with a Hero + Content layout
  • How to open new repositories on Obsidian / general How to of where to go for what overview
  • How to sync Obsidian so that it represents the actual Github repo
  • How to delete old branches
  • How to complete a review when you are assigned as a reviewer
  • How to add and link an image into a page/post (for example I had an issue with the tenzo 9 blog and the main image showing up on the page) (Lauren to create issue)
  • Templates specific to LI section for main pages/posts/layout
  • How to find the link to an image in the asset list (if you know the name) so you can drag it into a blog

[epic] Primary tutorial that walks through creating a markdown-based website with markdown-based MOGF approach

Create a set of materials explaining a markdown-based approach to building websites, taking notes and more. i.e. why and how to use markdown to publish websites, make wikis, create lightweight "databases" and more. "Why markdown-based approach is an awesome alternative to notion and things like that ..."

Inspiration (in a different area): https://web.archive.org/web/20200421114352/https://nextjs.org/learn/basics/create-nextjs-app

Immediate goals

  • #7 βœ… 2023-12-20 DONE. Content migrated to makeitmardown
  • Split into sub-pages that link (a la nextjs example) and have table of contents on front page βœ… 2024-01-15 see [here] for first page of tutorial series (https://makeitmarkdown.flowershow.app/learn/introduction)
  • "inbox" either issue or page where you dump links of stuff to process and excerpt any useful parts

Acceptance

Tasks

  • Write-up nextjs example as a great thing to learn from See below under 'Notes'. Have done up to Lesson 3 as this feels like enough to understand the logic.
  • Write tutorial(s)
    • Skeleton See skeleton.md file in repo
    • Flesh out 🚧 2024-01-15 in progress. Tutorial 1 and Tutorial 2 ready, tutorials 3 and 4 in outline form
    • Review
    • Finalize
  • Move everything at the /learn/ page (and subpages of this) (so introduction moves to /learn/ and everything becomes subpages of that ...)
  • Make a "readable" table of contents on the /learn/ page using headings that are sentences (so it is readable) βœ… 2024-01-15 see here - Rufus to review
  • Look at the coggle and consider moving key parts of it to a canvas ...
  • Get 2-3 volunteers to read through and feed back
    • Volunteers recruited Volunteers recrtuited: Alex (Bergerac Hub), Lauren, Simon Grant
    • Shared link Lauren and Simon have the link
    • Received and processed feedback Received Lauren's feedback
    • Incorporated feedback
  • Incorporate link to / content of contributor's guide for adding to Life Itself ecosystem site (see issue 144 in ecosystem repo)?

Sketch of full Learn tutorial

Rufus wrote on 23-12-19:

  • Intro
    • Why markdown-based? (websites etc)
    • What this tutorial/course will do
    • What you'll have at the end
  • Basics
    • What is markdown!
    • What do we mean markdown-based (in more detail)
  • Let's start
    • ❓ do we start locally or on github? we are focused on website so let's do github first ...
    • ...

Notes

NextJS example

  • Lesson 1: Create a Next.js App
    • Page 1 (Introduction to what NextJS is and why useful)
      • The problem
      • Next.js: The React Framework
      • About This Tutorial
    • Page 2
      • Setup
      • Create a Next.js app
      • Run the development server
    • Page 3
      • Welcome to Next.js - shows the result!
    • Page 4
      • Editing the page
      • Next Up: Creating Pages
  • Lesson 2: Navigate between pages
    • Page 1
      • Recap context
      • What You’ll Learn in This Lesson
    • Page 2
      • Setup
    • Page 3
      • Pages in Next.js
      • Create a New Page
    • Page 4
      • Link Component
      • Using <Link>
    • Page 5
      • Client-Side Navigation
      • Code splitting and prefetching
      • Summary
  • Lesson 3: Assets, Metadata, and CSS
    • Page 1
      • Recap context
      • What You’ll Learn in This Lesson
    • Page 2
      • Download Starter Code (Optional)
    • Page 3
      • Assets
    • Page 4
      • Metadata
      • Adding Head to first-post.js
    • Page 5
      • CSS Styling
      • Writing and Importing CSS
    • Page 6
      • Layout Component
      • Adding CSS
      • Automatically Generates Unique Class Names
    • Page 7
      • Global Styles
      • Restart the Development Server
      • Adding Global CSS
    • Page 8
      • Polishing Layout
      • Download Your Profile Picture
      • Update components/layout.module.css
      • Create styles/utils.module.css
      • Update components/layout.js
      • Update pages/index.js
    • Page 9
      • Styling Tips
      • Using classnames library to toggle classes
      • Customizing PostCSS Config
      • Using Sass

Meetings

2024-01-10 Rufus & Elisa sync

Otter transciption
[Google Meet recording](avg-nsou-cwj (2024-01-09 17:36 GMT+1))

Update

  • Have added .md files (that link) for each of intro, motivation, and tutorials 1-4 on repo.
  • Intro/landing page complete (though may be subject to revisions depending on content of the next page) (https://github.com/datopian/makeitmarkdown/blob/main/introduction.md)
  • 80% complete on writing out the 'motivation'/what is markdown page (haven't pushed the changes to motivation page to GitHub yet)
    • Currently working out how to make the 'why use markdown' specific to websites (rather than generic advantages of Markdown, which is what we had on the skeleton)
  • Have recruited 1 volunteer so far πŸ‘πŸ‘

Questions

  • Is it okay to reuse most of the material that Ola wrote? Yes
  • Tutorial 4 is not written and I don't know how to do it... Put a note saying under construction...

Rufus comments

(Note: moved these under 'tasks' above)

  • Move everything at the /learn/ page (and subpages of this) (so introduction moves to /learn/ and everything becomes subpages of that ...)
  • Let's check the skeleton again together
  • Make a "readable" table of contents on the /learn/ page using headings that are sentences (so it is readable)
  • Look at the coggle and consider moving key parts of it to a canvas ...

Skeleton

  • Make It Markdown does X
  • Markdown is a lightweight markup language used to format text
    • TODO: break this down + give examples
      • Markdown is a way to author that contrasts with with WYSIWYG editors like Word we are used to by presenting
    • Yet Markdown uses formatting that aims to be close to what we would expect so the raw marked up text is still human readable TODO: shorten
      • The markdown name comes frm the contrast to markup
  • Markdown is great because it is X, Y, Z
    • Simple and intuitive
    • Portable and compatible
    • Flexible and extensible
    • Platform-independent
  • ...

Job stories for editor guide(s) (what 'How to...?' questions are wanting to be answered?)

Job stories for editor guide(s) (what 'How to...?' questions are wanting to be answered?)

Personas

Who are we writing for?

We are writing for non-technical people i.e. not developers. That said, in most tutorials we are assuming ...

  • A basic knowledge of markdown
  • Already using github

Later we will add support for learning these too.

If writing for devs we will flag that

If we are writing for a developer/technical editor we will flag that and say e.g. "dev editor" or something like that ...

Personas List

Our personas and their skill levels.

Skill Newbie Markdown-aware Dev For Flowershow/PortalJS
Markdown ❌ βœ… βœ… βœ…
Git ❌ ? βœ… βœ…
Obsidian ❌ ? βœ… βœ…
Hackmd ❌ ❌ βœ… βœ…
Backend Knowledge ❌ ❌ βœ… βœ… βœ…
JAMStack ❌ ❌ βœ… βœ…
  • markdown (levels)
    • 0: you don't know what markdown is
    • 1: you know what markdown is and have seen it but aren't familiar
    • 2: ...
    • 3: you are familar with markdown formatting. You could use a markdown editor and know where markdown would be used.
  • markdown plus: you know markdown plus the advanced features like footnotes and tables, code blocks etc
  • git(hub):
    • 0: you don't know what git or github are
    • 1 You know what it is, the different functionality it can provide and why it is used, and (some of) the associated programs that can be used with it
    • 2 ...
    • 3
  • wordpress: editing previous knowledge related to the backend of programs for visual layout and confidence in navigation i.e. wordpress
  • obsidian: none
  • hackmd: none?
  • any coding/scripting (used in Brevo) (Javascript?): none
  • JAMStack: you are familiar with with JAMStack (Javascript + API + Markdown) websites including their construction and deployment. i.e. you are a dev with at least enough knowledge to build and deploy such a site and probably with some javascript knowledge.

Job Story

When writing documentation and guide for editing markdown + Flowershow/PortalJS based sites I want job stories so that I know what to prioritize to write and what i should be addressing

Acceptance

  • Personas identified
  • List of job stories
  • Categorize job stories in some useful way
  • Prioritized job stories

Tasks

  • Create personas or at least identify skill level we are aiming at
  • Collect existing needs and job stories
  • Brainstorm high level categories

Job Stories

4 high level jobs / journeys

  • Website: put content on the web. Create a markdown-based website, update it, add collaborators and discover markdown superpowers πŸš€πŸ¦Έβ€β™€
  • Collections: create and publish collections of things: Create markdown-based "database/catalogs", collaborate on it and publish it ...
  • Data: Publish data or data stories. Create markdown-based data catalog/portal/data-rich content, update it and publish it
  • Garden: make a knowledge garden. create a markdown-based wiki / knowledge garden with linked notes and more.

And a combo one: (very common actually)

  • Publish a site integrating content, collections, data and a garden I want to build a site combining some or all of these features!

And a sixth "meta" story:

  • Why FOGM? i.e. why use FOGM rather than e.g. wordpress to address these jobs?

Sharing and Publishing: distinct functionality relevant to each high level job story

For each of the above you have a spectrum of potential sharing that relates to "where" you are doing this:

  • Personal: you are just creating for yourself e.g. locally on your machine
  • Shared: you want to be able to share the result
  • Published: published on the web, for everyone to access

A common user journey goes from personal/local first to sharing to publishing on the web.

graph LR

local[Make local note]
local --> addmore[Add more notes]
addmore --> share[Share with others]
addmore --> publish
share --> publish[Publish as website]

Put text on the web

  • I want to put a landing page on the web
    • What is a landing page?
    • Hero
    • Call to action
    • Signup etc
  • I want to put up a note / post / article / report
    • Long-form text
    • Author
    • Date
    • ...
  • I want to create a blog: essentially article plus one very specific version of "collection of stuff"

Publish Collections

  • I want to publish a collection or catalog of stuff: on its own or embedded elsewhere e.g. a portfolio, a data catalog, my favorite movies, a list of books, a list of people ...
    • List of items
    • A browse/search page
    • NB: these can grow more complex e.g. multiple lists of items which connect e.g. organizations and the topics they work on

Publish Data

TODO

Knowledge garden

  • I want to create a knowledge garden/wiki: i.e. docs are interlinked

Why use this approach (POGM)?

TODO: still needs refactoring ...

There are lots of ways to address these different needs from classic CMS and blog platforms like wordpress to wikis etc.

However, few of them use markdown (so why use markdown)

Our contention is that a markdown-based approach using PortalJS/Flowershow/Markdown integrated toolkit is really great because ...

  • Many fewer once you add markdown requirement.
  • And we are offering one specific set of tooling to do this.

❗️ List of howtos to be written

Put text on the web

Knowledge garden

Publish Collections

Collaboration

  • How to propose changes to someone else's website

⬇️ LifeItself-specific

  • How to add or edit the content on the Life Itself ecosystem page
  • How to edit the people page
  • How to edit the teams' page

Notes

Nathen https://github.com/orgs/life-itself/discussions/393#discussioncomment-5460864

How to correct a pull request

One thing I keep getting stuck on is how to not include changes into a pull request and to remove those changes as if they didn't happen. For now I just commit and then do the fixes, but this seems inefficient.

Other questions

  • How to make two different pulls requests
  • How do we symlink pages. And what is symlinking?
  • How to update the teams page
  • How to use components πŸ’¬2023-05-24 relevant for using components provided by that platform
    • How to create and use bespoke components? βœ…2023-05-24 ❌ not so relevant as we don't support bespoke components so much
  • How to use tailwind
  • How to use css
  • How to redirect pages

Zaib https://github.com/orgs/life-itself/discussions/393#discussioncomment-5502358

I have learned how to use Obsidian from Nathen, he showed me how to use it and we recorded the video. I followed the video later to create the project pages and people page. The problems I encountered are:

  • A clear understanding of the flow of Syncing the Fork, Pull origin, and push origin and creating the pull requests.
  • How to add images from Vault
  • How to add internal and external links
  • how to edit the people page
  • The protocols around making edits in Obsidian, for instance, I had to delete the image from the vault when I removed it from one of the pages, I didn't know this from the start.
  • Lastly, the protocol around updating the Issues in the "current iteration" in Backlog All.
  • On-going Problem: How to fix merge conflicts

I have a clear understanding of these right now, but in the start it was confusing. A walk-through guide in navigating GitHub and Obsidian would be very helpful for people just getting started.

Rufus https://github.com/orgs/life-itself/discussions/393#discussioncomment-5461119

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.