While Wyam is certainly still usable, it's been rebranded and rebooted as Statiq with a ton of improvements. You almost certainly want to look there unless you're already a Wyam user.

NamedModule Wyam.Common

Wraps a module and gives it a name for use with Wyam.Common.Modules.ModuleList.

Package

This module exists in the Wyam.Common package which is not part of the core distribution. Add the following preprocessor directive to your configuration file to use it:
#n Wyam.Common

Usage

  • NamedModule(string name, IModule module)

    Wraps a module and gives it the specified name.

    • name

      The name of the module.

    • module

      The wrapped module.

GitHub