Nodsoft.MoltenObsidian
1.1.1
dotnet add package Nodsoft.MoltenObsidian --version 1.1.1
NuGet\Install-Package Nodsoft.MoltenObsidian -Version 1.1.1
<PackageReference Include="Nodsoft.MoltenObsidian" Version="1.1.1" />
paket add Nodsoft.MoltenObsidian --version 1.1.1
#r "nuget: Nodsoft.MoltenObsidian, 1.1.1"
// Install Nodsoft.MoltenObsidian as a Cake Addin #addin nuget:?package=Nodsoft.MoltenObsidian&version=1.1.1 // Install Nodsoft.MoltenObsidian as a Cake Tool #tool nuget:?package=Nodsoft.MoltenObsidian&version=1.1.1
<p align="center"><img src="icon.png" alt="logo" width="256"/></p> <h1 align="center">MoltenObsidian</h1> <h3 align="center">.NET 6+ Library for <a href="https://obsidian.md">Obsidian</a>-flavoured Markdown parsing, with support for vault mapping and Blazor.</h3>
<div align="center"> <hr /> <img alt="GitHub Actions Workflow Status" src="https://img.shields.io/github/actions/workflow/status/Nodsoft/MoltenObsidian/build.yml?style=flat&logo=github&label=test%2Fbuild"> <img alt="NuGet Core Version" src="https://img.shields.io/nuget/v/Nodsoft.MoltenObsidian?style=flat&logo=nuget&label=core"> <img alt="NuGet Core Preversion" src="https://img.shields.io/nuget/vpre/Nodsoft.MoltenObsidian?style=flat&logo=nuget&label=core%20(pre)"> <img alt="NuGet Downloads" src="https://img.shields.io/nuget/dt/Nodsoft.MoltenObsidian?style=flat&logo=nuget"> <hr /> </div> <div></div>
Premise
Molten Obsidian is a high-performance library designed as an easily integrated and lightweight FOSS alternative to Obsidian Publish. With extensibility and integration-oriented conception, this library makes it perfect for integrating Obsidian-flavoured markdown notes on your Blazor App, but also importing entire vaults as a navigation-ready area, with full routing support.
Furthermore, Molten Obisidian extends past the original Obsidian specifications, aiming to supercharge your documentation/wiki applications and websites needs, using a customizable data source interface, and supercharged YAML frontmatter capabilities.
Example
Converting an Obsidian-flavoured Markdown note to HTML is as simple as this :
using Nodsoft.MoltenObsidian;
// Create a new ObsidianText instance with the content to convert
ObsidianText obsidianMarkdown = new(@"
# Hello, world!
This is a sample Markdown document.
And a paragraph with **bold** and *italic* text.
");
// This is the HTML string you can then call in Blazor components as `@htmlText`.
MarkupString htmlText = obsidianMarkdown.ToHtml();
But that's just the basics. Under the hood, Markdig is what makes it happen. Easy!
**Now let's open an Obsidian vault on the Filesystem, and wire it to a routable Blazor component 😗*
Startup.cs
using Nodsoft.MoltenObsidian.Blazor;
using Nodsoft.MoltenObsidian.Vault;
using Nodsoft.MoltenObsidian.Vaults.FileSystem;
// First deal with the DI, by adding a Filesystem vault and the Blazor integration:
public void ConfigureServices(IServiceCollection services)
{
services.AddMoltenObsidianFileSystemVault(new DirectoryInfo("/path/to/vault"));
services.AddMoltenObsidianBlazorIntegration();
}
_Imports.razor
@using Nodsoft.MoltenObsidian.Blazor
@using Nodsoft.MoltenObsidian.Blazor.Helpers;
@using Nodsoft.MoltenObsidian.Vault;
VaultPage.razor
@page "/vault/{*VaultPath}"
@inject IVault Vault
<ObsidianVaultDisplay BasePath="@this.GetCallingBaseVaultPath()" CurrentPath="@VaultPath" />
@code {
[Parameter]
public string VaultPath { get; set; }
}
In a matter of minutes, you've just created a web app integration for your own Obsidian Vault, for all to see. Congratulations!
Now, let's take it further.
Customizations
Vault sources (see: Vaults)
Molten Obsidian is designed with extensibility at its core, and allows you to implement your own Vault source. Should the existing reference Vault providers not be suitable for your Vault storage needs, you can provide your own implementation.
A few examples of additional stores you can implement:
- Database store (xSQL, MongoDB, etc...)
- Over-the-wire/Network-based (NFS, etc...)
- VCS-based (Git repo)
If you're finding yourself implementing any of these, feel free to PR! We'll be more than happy to support new vault providers.
Layouts
Molten Obsidian is meant to tailor itself to your app. As such, you can provide within the Blazor Component a series of RenderFragment
delegates responsible for organizing the Vault display.
You can provide them in cascade, as such :
<ObsidianVaultDisplay BasePath="@this.GetCallingBaseVaultPath()" CurrentPath="@VaultPath">
<FoundFile Context="file">
<h1>Vault note: @file.NoteName</h1>
<a class="lead text-muted" href="@file.Parent?.Path">Return to @(file.Parent?.Name ?? "Root")</a>
<hr />
@(new MarkupString(file.ReadDocument().ToHtml()))
</FoundFile>
<NotFound>
<h3 class="text-warning">Sorry, there is nothing here.</h3>
</NotFound>
</ObsidianVaultDisplay>
Alternatively, you can provide delegates, like so :
<ObsidianVaultDisplay BasePath="@this.GetCallingBaseVaultPath()" CurrentPath="@VaultPath"
FoundFile="OnFoundFile"
NotFound="OnNotFound"
/>
@code {
public static RenderFragment OnFoundFile(IVaultNote file) => __builder =>
{
<h1>Vault note: @file.NoteName</h1>
<a class="lead text-muted" href="@file.Parent?.Path">Return to @(file.Parent?.Name ?? "Root")</a>
<hr />
@(new MarkupString(file.ReadDocument().ToHtml()))
};
public static RenderFragment OnNotFound(string _) => static __builder =>
{
<h3 class="text-warning">Sorry, there's nothing here.</h3>
};
}
CLI Tool
Our CLI tool aims at cutting down the menial tasks associated with implementing more advanced features of Molten Obsidian, allowing you to better focus on what matters, but also automating any of those integration tasks within you workflow.
See: Nodsoft.MoltenObsidian.Tool
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- JetBrains.Annotations (>= 2024.2.0)
- Markdig (>= 0.37.0)
- Nodsoft.Markdig.SyntaxHighlighting (>= 1.0.12)
- YamlDotNet (>= 16.0.0)
NuGet packages (5)
Showing the top 5 NuGet packages that depend on Nodsoft.MoltenObsidian:
Package | Downloads |
---|---|
Nodsoft.MoltenObsidian.Blazor
Blazor integration for Molten Obsidian |
|
Nodsoft.MoltenObsidian.Manifest
Implementation for Molten Obsidian vault Manifest, used for vault implementations where structure scanning is not possible. |
|
Nodsoft.MoltenObsidian.Vaults.FileSystem
Local Filesystem Vault provider for Molten Obsidian |
|
Nodsoft.MoltenObsidian.Vaults.Http
Remote HTTP Vault provider for Molten Obsidian |
|
Nodsoft.MoltenObsidian.Vaults.Ftp
Remote FTP Vault provider for Molten Obsidian |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.1.1 | 196 | 8/25/2024 |
1.0.19 | 222 | 6/22/2024 |
1.0.18 | 118 | 6/22/2024 |
1.0.17 | 134 | 5/12/2024 |
1.0.15 | 105 | 5/11/2024 |
1.0.14 | 108 | 5/11/2024 |
1.0.13 | 167 | 5/11/2024 |
1.0.4-beta | 204 | 4/12/2024 |
0.6.10 | 221 | 3/25/2024 |
0.6.3 | 208 | 3/23/2024 |
0.5.73 | 246 | 2/17/2024 |
0.5.67 | 246 | 2/16/2024 |
0.5.18 | 505 | 8/11/2023 |
0.5.13 | 441 | 6/17/2023 |
0.5.12 | 426 | 6/17/2023 |
0.5.3 | 461 | 6/14/2023 |
0.4.23 | 437 | 6/1/2023 |
0.4.22 | 434 | 5/26/2023 |
0.4.21 | 452 | 5/14/2023 |
0.4.19 | 508 | 4/30/2023 |
0.4.18 | 489 | 4/30/2023 |
0.4.16 | 481 | 4/30/2023 |
0.4.3 | 515 | 4/29/2023 |
0.4.1 | 523 | 4/22/2023 |
0.3.16 | 681 | 2/25/2023 |
0.3.14 | 661 | 2/10/2023 |
0.3.12 | 755 | 12/31/2022 |
0.3.9 | 737 | 12/30/2022 |
0.3.8 | 563 | 12/30/2022 |
0.3.6 | 577 | 12/27/2022 |
0.3.5 | 665 | 12/19/2022 |
0.2.4 | 694 | 12/11/2022 |
0.2.3 | 576 | 12/11/2022 |
0.1.9 | 708 | 12/4/2022 |
0.1.6 | 732 | 12/4/2022 |
0.1.5 | 716 | 12/3/2022 |
0.1.4 | 678 | 12/3/2022 |