com.ossuminc.riddl.commands.hugo.writers.ProjectorWriter.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of riddl-commands_3 Show documentation
Show all versions of riddl-commands_3 Show documentation
RIDDL Command Infrastructure and command definitions
The newest version!
/*
* Copyright 2019 Ossum, Inc.
*
* SPDX-License-Identifier: Apache-2.0
*/
package com.ossuminc.riddl.commands.hugo.writers
import com.ossuminc.riddl.language.AST.{Parents, ProjectorContents, Projector}
trait ProjectorWriter { this: MarkdownWriter =>
def emitProjector(projector: Projector, parents: Parents): Unit = {
containerHead(projector)
emitDefDoc(projector, parents)
list("Repository", projector.repositories)
emitProcessorDetails[ProjectorContents](projector, parents)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy