UNPKG

@geometrically/minecraft-motd-parser

Version:

Minecraft Server MOTD Parser, can convert to html, json, text.

11 lines (10 loc) 211 B
import { motdJsonType } from "../types"; /** * Convert motd text to JSON. * * @param text */ export default function parseTextToJSON(text: string): { text: string | number; extra: motdJsonType[]; };