All Projects → tchayen → Markdown Links

tchayen / Markdown Links

Licence: mit
Command that displays a graph of local links between markdown files

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Markdown Links

Vscode Coding Tracker
🕙 A coding activities tracker(time, file, type)
Stars: ✭ 137 (-9.87%)
Mutual labels:  vscode-extension
Arepl Vscode
program python in real-time
Stars: ✭ 142 (-6.58%)
Mutual labels:  vscode-extension
Coda
A language experiment -- irc.freenode.net ##coda
Stars: ✭ 148 (-2.63%)
Mutual labels:  vscode-extension
Vscode Mjml
This repo is archived. MJML preview, lint, compile for Visual Studio Code.
Stars: ✭ 138 (-9.21%)
Mutual labels:  vscode-extension
Processing Vscode
A Visual Studio Code extension for the programming language Processing
Stars: ✭ 141 (-7.24%)
Mutual labels:  vscode-extension
Codelf
A search tool helps dev to solve the naming things problem.
Stars: ✭ 12,052 (+7828.95%)
Mutual labels:  vscode-extension
Durablefunctionsmonitor
A monitoring/debugging UI tool for Azure Durable Functions
Stars: ✭ 136 (-10.53%)
Mutual labels:  vscode-extension
Omi Snippets
🔖Visual Studio Code Syntax Highlighting For Single File React And Omi Components - 编写React和Omi单文件组件的VSC语法高亮插件
Stars: ✭ 149 (-1.97%)
Mutual labels:  vscode-extension
Vscode Stylelint
Official Visual Studio Code extension to lint CSS/SCSS/Less with stylelint
Stars: ✭ 141 (-7.24%)
Mutual labels:  vscode-extension
Vscode Gist
vscode extension for quick gists
Stars: ✭ 146 (-3.95%)
Mutual labels:  vscode-extension
Vscoq
A Visual Studio Code extension for Coq [[email protected],@fakusb]
Stars: ✭ 138 (-9.21%)
Mutual labels:  vscode-extension
Android Dev Ext
Android debugging support for VS Code
Stars: ✭ 141 (-7.24%)
Mutual labels:  vscode-extension
Vulncost
Find security vulnerabilities in open source npm packages while you code
Stars: ✭ 146 (-3.95%)
Mutual labels:  vscode-extension
Helm Intellisense
Extension for Visual Studio Code - Intellisense in helm-templates from the values.yaml
Stars: ✭ 137 (-9.87%)
Mutual labels:  vscode-extension
Openhab Vscode
VS Code extension for openHAB configuration files
Stars: ✭ 148 (-2.63%)
Mutual labels:  vscode-extension
Vscode Swift Development Environment
New home of Swift Development Environment for VS Code
Stars: ✭ 137 (-9.87%)
Mutual labels:  vscode-extension
Latex Utilities
An add-on to LaTeX Workshop that provides some features that go beyond the bare essentials
Stars: ✭ 142 (-6.58%)
Mutual labels:  vscode-extension
Vscode Powertools
A swiss army knife with lots of tools, extensions and (scriptable) enhancements for Visual Studio Code.
Stars: ✭ 150 (-1.32%)
Mutual labels:  vscode-extension
Browser Preview
🎢Preview html file in your default browser
Stars: ✭ 148 (-2.63%)
Mutual labels:  vscode-extension
Vsnotes
Simple VS Code extension for plain text note taking.
Stars: ✭ 146 (-3.95%)
Mutual labels:  vscode-extension

Markdown Links

Adds command Show Graph that displays a graph of local links between Markdown files in the current working directory.

Gives better insights into structure of your files if you are writinga wiki, a Zettelkasten style notebook or documentation.

Demo GIF

Workflow

Recommended workflow is either keeping the graph open and using it as an alternative to the explorer sidebar or checking the it from time to time.

The graph refreshes automatically every time you:

  • Update a Markdown title of the file.
  • Change links to other files.
  • Create a new file and add give it a title.
  • Remove a file.

When active file in the editor changes and it matches one of the files in the graph – it will be highlighted.

Concepts

  • Title is always the first Markdown heading of depth 1, i.e. # Title.
  • Files which do not have a title do not appear in the graph.
  • Files can link to other files using local Markdown links, ID-based links, or [file-name] links.
  • The graph is not directed. It doesn't show which file has the link and which one is linked.
  • Directory structure is not relevant for the graph. All that matters is the mutual links between files.

Example

# Title

Link can be present in [text](first.md) or on a special list.

## Linked

- [Second](./2.md)

Named reference can also be used, like this: [Reference].

[reference]: ref.md

Settings

This extension contributes the following settings:

markdown-links.showColumn

Controls in which column should the graph appear. Refer to Column values. Defaults to beside.

markdown-links.openColumn

Controls in which column should clicked files open. Refer to Column values. Defaults to one.

Column values

  • active – in the currently focused column.
  • beside – other than the current.
  • one (default), two, three, four, five, six, seven, eight, nine – respective editor columns.

markdown-links.fileIdRegexp

A regular expression used to find the file ID for use in wiki-style links.

markdown-links.graphType

  • default (default)
  • obsidian - obsidian like graph

markdown-links.titleMaxLength

The maximum title length before being abbreviated. Set to 0 or less to disable.

Example

The sentence:

Type checking a multithreaded functional language with session types

When abbreviated for a maximum length of 24, becomes:

Type checking a multithr...

Roadmap

Plans for development are roughly summarized in the Roadmap.

Changelog

Refer to the CHANGELOG.md file.

Contributing

You are very welcome to open an issue or a pull request with changes.

If it is your first time with vscode extension, make sure to checkout Official Guides.

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].