Gutenberg 1.3.4
dotnet add package Gutenberg --version 1.3.4
NuGet\Install-Package Gutenberg -Version 1.3.4
<PackageReference Include="Gutenberg" Version="1.3.4" />
paket add Gutenberg --version 1.3.4
#r "nuget: Gutenberg, 1.3.4"
// Install Gutenberg as a Cake Addin #addin nuget:?package=Gutenberg&version=1.3.4 // Install Gutenberg as a Cake Tool #tool nuget:?package=Gutenberg&version=1.3.4
Gutenberg
A library for laying out text, based on Phil Wadler's pretty printing algorithm.
Installing
Gutenberg is available on Nuget. API docs are hosted on my website.
Tutorial
Gutenberg's core object is called Document<T>
. It represents a textual document which can be laid out in a variety of ways.
You can create a document from a string,
// Document<T> is intended to be imported under an alias.
// If you're not using annotations (an advanced feature),
// you can set `T` to `object`.
using Doc = Gutenberg.Document<object>;
var doc = Doc.FromString("Hello world!");
concatenate documents,
var doc2 = doc + " My name is Johannes Gutenberg."; // strings can be implicitly cast to documents
insert line breaks,
var doc3 = doc2 + Doc.LineBreak + "Pleased to meet you!";
and render the document as a string.
Console.WriteLine(doc3.ToString());
// Output:
// Hello world! My name is Johannes Gutenberg.
// Pleased to meet you!
You can instruct Gutenberg to try alternative layouts for a document using the Grouped
method. Grouped
tells Gutenberg to attempt to flatten the document, collapsing any LineBreak
s into a single space.
Console.WriteLine(doc3.Grouped());
// Output:
// Hello world! My name is Johannes Gutenberg. Pleased to meet you!
Gutenberg tries to use its available horizontal space (a default of 80 characters) efficiently. It tries to flatten the groups within a document as long as there is enough horizontal space to do so. If there's an overflow, it falls back on the un-flattened version.
// set the page width to 60 characters - too narrow to flatten the LineBreak
Console.WriteLine(doc3.Grouped().ToString(60));
// Output:
// Hello world! My name is Johannes Gutenberg.
// Pleased to meet you!
The Nested
operator controls indentation. If a document gets rendered with line breaks, the line breaks are indented to the document's nesting level.
Console.WriteLine(doc3.Nested(4).Grouped().ToString(60));
// Output:
// Hello world! My name is Johannes Gutenberg.
// Pleased to meet you!
You can place groups inside each other, to give Gutenberg multiple options to layout a document as efficiently as possible. Here's an example of a recursive function to pretty-print a tree which uses nested groups to produce a flexible layout.
record Tree(string Name, params Tree[] Children) : IPrettyPrintable<object>
{
public Doc PrettyPrint()
{
var children = Children.Length == 0
? Doc.Empty
: Doc.ZeroWidthLineBreak
.Append(Doc.Concat(
Children
.Select(c => c.PrettyPrint())
.Separated("," + Doc.LineBreak)
))
.Nested(2)
.Between("[", Doc.ZeroWidthLineBreak + "]");
return Doc.Concat(Name).Append(children).Grouped();
}
}
Console.WriteLine(exampleTree.PrettyPrint().ToString(20))
// Output:
// aaa[
// bbbbb[ccc, dd],
// eee,
// ffff[gg, hhh, ii]
// ]
Product | Versions 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 was computed. 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. |
-
net6.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.