重金买了个域名 json.cat
放着吃灰挺可惜 贡献给 xdm 了
期待有大神能来开发下 没广告就行
这是自己 2 行代码写的 主要突出一个快!
<body>
<main>
<textarea id="source" autofocus placeholder="Source"></textarea>
<textarea id="target" readonly placeholder="Format"></textarea>
</main>
</body>
<script>
const source = $("#source")
const target = $("#target")
source.keyup(() => {
try {
const text = source.val()
if (text.trim() == '') {
target.val("")
} else {
const json = JSON.parse(text)
const tree = JSON.stringify(json, null, '\t')
target.val(tree)
}
} catch (e) {
target.val(e.message)
}
})
</script>
1
mizuhashi 2023-06-30 22:18:19 +08:00
.cat 域名是專供加泰語/文化社群用的,使用.cat 需要遵循 https://domini.cat/en/rules-of-the-cat-domain/,如果不屬於列表中的個人或團體,底綫也應該是需要提供加泰語版本,不然很可能會被收回
|