Go to file
2021-12-27 16:19:05 -05:00
.gitignore basic dir walking + link parsing 2021-07-16 23:26:40 -04:00
action.yml add github action 2021-08-27 11:36:49 -04:00
contentIndex.yaml minor file refactoring 2021-12-27 16:19:05 -05:00
Dockerfile remove ga and fix gover 2021-07-17 01:18:59 -04:00
go.mod minor file refactoring 2021-12-27 16:19:05 -05:00
go.sum minor file refactoring 2021-12-27 16:19:05 -05:00
LICENSE.txt basic dir walking + link parsing 2021-07-16 23:26:40 -04:00
linkIndex.yaml minor file refactoring 2021-12-27 16:19:05 -05:00
main.go minor file refactoring 2021-12-27 16:19:05 -05:00
parse.go minor file refactoring 2021-12-27 16:19:05 -05:00
README.md fix unexpected panic 2021-10-24 22:56:24 -07:00
util.go minor file refactoring 2021-12-27 16:19:05 -05:00
walk.go minor file refactoring 2021-12-27 16:19:05 -05:00
write.go minor file refactoring 2021-12-27 16:19:05 -05:00

Obsidian Link Scrapper

Used by Quartz

This repository comes to you in two parts.

  1. GitHub Action (scrapes links into a .yml file)
  2. Hugo Partial (turns .yml file into graphs and tables)

GitHub Action

GitHub action and binary to scrape Obsidian vault for links and exposes them as a .yml file for easy consumption by Hugo.

Example Usage (Binary)

Read Markdown from the /content folder and place the resulting linkIndex.yaml (and contentIndex.yaml if the index flag is enabled) into /data

# Installation
go install github.com/jackyzha0/hugo-obsidian

# Run
hugo-obsidian -input=content -output=data -index=true

Example Usage (GitHub Action)

Add 'Build Link Index' as a build step in your workflow file (e.g. .github/workflows/deploy.yaml)

...

jobs:
  deploy:
    runs-on: ubuntu-18.04
    steps:
      - uses: actions/checkout@v2
      - name: Build Link Index
        uses: jackyzha0/hugo-obsidian@v2.1
        with:
          input: content # input folder
          output: data   # output folder
          index: true    # whether to index content
      ...