Nodsoft.MoltenObsidian 1.0.4-beta

This is a prerelease version of Nodsoft.MoltenObsidian.
dotnet add package Nodsoft.MoltenObsidian --version 1.0.4-beta
NuGet\Install-Package Nodsoft.MoltenObsidian -Version 1.0.4-beta
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Nodsoft.MoltenObsidian" Version="1.0.4-beta" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Nodsoft.MoltenObsidian --version 1.0.4-beta
#r "nuget: Nodsoft.MoltenObsidian, 1.0.4-beta"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Nodsoft.MoltenObsidian as a Cake Addin
#addin nuget:?package=Nodsoft.MoltenObsidian&version=1.0.4-beta&prerelease

// Install Nodsoft.MoltenObsidian as a Cake Tool
#tool nuget:?package=Nodsoft.MoltenObsidian&version=1.0.4-beta&prerelease

<img align="right" src="icon.png" alt="logo" width="256"/>

Molten Obsidian

.NET 6+ Library for Obsidian-flavoured Markdown parsing for Blazor with Vault mapping support.

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 Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.0.4-beta 113 4/12/2024
0.6.10 153 3/25/2024
0.6.3 148 3/23/2024
0.5.73 186 2/17/2024
0.5.67 185 2/16/2024
0.5.18 428 8/11/2023
0.5.13 387 6/17/2023
0.5.12 365 6/17/2023
0.5.3 398 6/14/2023
0.4.23 373 6/1/2023
0.4.22 376 5/26/2023
0.4.21 394 5/14/2023
0.4.19 451 4/30/2023
0.4.18 431 4/30/2023
0.4.16 435 4/30/2023
0.4.3 464 4/29/2023
0.4.1 465 4/22/2023
0.3.16 621 2/25/2023
0.3.14 608 2/10/2023
0.3.12 700 12/31/2022
0.3.9 691 12/30/2022
0.3.8 529 12/30/2022
0.3.6 539 12/27/2022
0.3.5 623 12/19/2022
0.2.4 641 12/11/2022
0.2.3 536 12/11/2022
0.1.9 667 12/4/2022
0.1.6 693 12/4/2022
0.1.5 670 12/3/2022
0.1.4 638 12/3/2022