cc.unitmesh.docs.render.Render.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docs-builder Show documentation
Show all versions of docs-builder Show documentation
Chocolate Factory is a cutting-edge LLM toolkit designed to empower you in creating your very own AI assistant.
package cc.unitmesh.docs.render
data class CustomJekyllFrontMatter(
var title: String,
val parent: String,
val navOrder: Int,
val permalink: String,
) {
fun toMarkdown(): String {
return """
---
layout: default
title: $title
parent: $parent
nav_order: $navOrder
permalink: $permalink
---
""".trimIndent()
}
}