mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-13 03:54:06 +09:00
22 lines
372 B
Kotlin
22 lines
372 B
Kotlin
package net.torvald.terrarum.serialise
|
|
|
|
/**
|
|
* Created by minjaesong on 2021-08-23.
|
|
*/
|
|
object WriteMeta {
|
|
|
|
|
|
private fun modnameToOrnamentalHeader(s: String) =
|
|
"\n\n${"#".repeat(16 + s.length)}\n" +
|
|
"## module: $s ##\n" +
|
|
"${"#".repeat(16 + s.length)}\n\n"
|
|
}
|
|
|
|
|
|
/**
|
|
* Created by minjaesong on 2021-09-03.
|
|
*/
|
|
object ReadMeta {
|
|
|
|
|
|
} |