Skip to content

Supported Formats

markymark indexes more than plain markdown. Structured configuration files like JSON, YAML, and TOML get document outlines, hover information, and symbol search — the same core intelligence applied to a different surface.

Extensions: .md, .markdown

Full feature set: diagnostics, go-to-definition, find-references, hover, rename, completion, document symbols, and workspace symbol search. Wiki-link syntax ([[page]], [[page#heading]]) is supported natively, including Obsidian and Logseq conventions.

Markdown files are the primary format — every LSP and MCP capability is available.

markymark extracts these elements from markdown during indexing:

ElementSyntaxNotes
Headings## TitleLevel, slug, and position tracked
Wiki links[[page]], [[page|alias]]Obsidian/Logseq syntax, optional heading anchor
Markdown links[text](url#anchor)Optional heading anchor for cross-references
Tags#tagLogseq-style inline tags
XML tags<agent>...</agent>Custom semantic elements with attributes
Block IDs^block-idObsidian document-internal anchors
Block references((uuid))Logseq cross-document block refs
Code spans`symbol`Inline code cross-references with optional symbol kind
Tasks- [ ] / - [x]Checkbox state and description tracked
Embeds![[target]]Obsidian file transclusion
Callouts> [!note] TitleAdmonition type and optional title
Query blocks{{query ...}}Logseq datalog queries
Link definitions[label]: url "title"Reference-style link targets
FrontmatterYAML / TOML blockDocument metadata key-value pairs
Propertieskey:: valueLogseq inline properties

Structured documents share a common set of features: document outline (symbol hierarchy), hover (value kind and key path), and workspace symbol search. They do not support find-references or rename.

FormatExtensionsCommentsNotes
JSON.jsonNoStandard JSON
JSONC.jsonc// and /* */Trailing commas allowed
JSON5.json5// and /* */Unquoted keys, single-quoted strings
JSONL.jsonlPer-lineEach line indexed as [index].key
YAML.yaml, .yml#Anchors and aliases supported
TOML.toml#Dotted keys expanded in outline
Dotenv.env#, ;Flat key=value pairs
INI.ini, .cfg#, ;Sections, both = and : separators
  • Document symbols — hierarchical key outline in your editor’s symbol panel
  • Hover — shows the value kind (string, number, array, etc.) and full key path
  • Workspace symbols — keys are searchable alongside markdown headings
  • Find references — not available for structured keys across files
  • Rename — not available for structured keys
  • Diagnostics — markdown-specific checks (broken links, duplicate headings) do not apply to structured formats
  • Completion — not available for structured formats