Gutenberg 1.3.1

dotnet add package Gutenberg --version 1.3.1
NuGet\Install-Package Gutenberg -Version 1.3.1
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="Gutenberg" Version="1.3.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Gutenberg --version 1.3.1
#r "nuget: Gutenberg, 1.3.1"
#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 Gutenberg as a Cake Addin
#addin nuget:?package=Gutenberg&version=1.3.1

// Install Gutenberg as a Cake Tool
#tool nuget:?package=Gutenberg&version=1.3.1

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 LineBreaks 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • 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.

Version Downloads Last updated
1.3.1 210 11/28/2023
1.3.0 420 7/23/2022
1.2.1 395 7/10/2022
1.2.0 413 7/9/2022
1.1.0 407 6/28/2022
1.0.0 404 6/24/2022