DocsLanguagesBBCodeOn this pageBBCodeBBCode ("Bulletin Board Code") is a lightweight markup language used to format messages in many Internet forum software.Language InfoNamebbcodeExtensions.bbcode, .bbEditormarkupCompilerBBob.VersionBBob: v3.0.2Example Usageshow codeJSTSReactVueSvelteimport { createPlayground } from 'livecodes';const options = { "config": { "markup": { "language": "bbcode", "content": "[i]Text[/i]" } }, "params": { "compiled": "open" }};createPlayground('#container', options);import { createPlayground, type EmbedOptions } from 'livecodes';const options: EmbedOptions = { "config": { "markup": { "language": "bbcode", "content": "[i]Text[/i]" } }, "params": { "compiled": "open" }};createPlayground('#container', options);import LiveCodes from 'livecodes/react';export default function App() { const options = { "config": { "markup": { "language": "bbcode", "content": "[i]Text[/i]" } }, "params": { "compiled": "open" }}; return (<LiveCodes {...options}></LiveCodes>);}<script setup>import LiveCodes from "livecodes/vue";const options = { "config": { "markup": { "language": "bbcode", "content": "[i]Text[/i]" } }, "params": { "compiled": "open" }};</script><template> <LiveCodes v-bind="options" /></template><script>import { onMount } from 'svelte';import { createPlayground } from 'livecodes';const options = { "config": { "markup": { "language": "bbcode", "content": "[i]Text[/i]" } }, "params": { "compiled": "open" }};let container;onMount(() => { createPlayground(container, options);});</script><div bind:this="{container}"></div>Linksbbcode.orgBBCode guideBBCode on Wikipedia