dainakai1k downloadsTransform YAML code blocks into HTML tables for better visualization
An Obsidian plugin that renders YAML code blocks as HTML tables for better visualization.
yaml-table) into HTML tables```yaml-table
title: Project Plan
tasks:
- name: Task 1
due: 2025-05-05
- name: Task 2
due: 2025-05-07
```
To add a caption to your table, specify it after a colon in the language identifier line:
```yaml-table: Table 1. Project Plan Details
title: Project Plan
tasks:
- name: Task 1
due: 2025-05-05
- name: Task 2
due: 2025-05-07
```
main.js styles.css and manifest.json from the releases.obsidian/plugins/yaml-table directoryThe plugin settings offer the following option:
yaml-table)title: table title
author: hogehoge
date: 2025-05-07
```yaml-table: Table 2. Event Schedule
schedule:
- time: Mid-May
action: Event A
- time: Late May
action: Event B
```
project:
name: YAML Table Plugin
version: 1.1.0
features:
- table rendering
- hogehoge
- hogehoge
This plugin is released under the MIT License.
npm install to install dependenciesnpm run dev to start development with hot-reloadnpm run build to build the production versionnpm run buildmain.js, manifest.json, and styles.css to your Obsidian vault's plugins directory:
.obsidian/plugins/yaml-table/