mirror of
https://github.com/land0r/obsidian-flowchart-plugin.git
synced 2026-07-22 11:30:23 +00:00
* Add - Integrate flowchart.js for rendering flowcharts within Obsidian notes * Add - Plugin settings for customizable line width, font size, font color, line color, element color, and fill color * Add - Support for "Yes" and "No" text customization in decision paths * Fix - Apply fixes for SVG `xlink` namespace issues to ensure compatibility with modern SVG standards * Fix - Address potential `NaN` errors in flowchart rendering by validating configuration values * Update - README with detailed usage instructions, development guide, installation steps, and contribution information * Update - Enhance `renderFlowchart` function to include a delay for smoother integration with Obsidian's rendering engine
13 lines
232 B
CSS
13 lines
232 B
CSS
/*
|
|
|
|
This CSS file will be included with your plugin, and
|
|
available in the app when your plugin is enabled.
|
|
|
|
If your plugin does not need CSS, delete this file.
|
|
|
|
*/
|
|
|
|
.obsidian-flowchart-container svg {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|