NoteLinkHelper inserts wikilinks into an existing 'Siehe auch' section
or appends one. ApplyPlaceholders fills {{title}}/{{date}}/{{topic}} in
template bodies. new --template <name> fetches a server-side template
before opening the editor. SlugGuard moved to NozCli.Core in a previous
session — remove stale copy from NozCli.
9 lines
209 B
C#
9 lines
209 B
C#
namespace Noz.PowerShell;
|
|
|
|
public sealed class NozTemplate
|
|
{
|
|
public string Name { get; init; } = "";
|
|
public string? Description { get; init; }
|
|
|
|
public override string ToString() => Name;
|
|
}
|