mirror of
https://github.com/codex-team/editor.js
synced 2026-03-16 23:55:49 +01:00
* new redactor version * update * update * bundler config updated * clear bundler without plugins
27 lines
502 B
HTML
27 lines
502 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
</head>
|
|
<body>
|
|
|
|
<textarea name="" id="codex_area" cols="30" rows="10" hidden></textarea>
|
|
|
|
</body>
|
|
|
|
<script src="./codex-editor.js?v=10"></script>
|
|
<link rel="stylesheet" href="./codex-editor.css?v=10">
|
|
|
|
<script>
|
|
codex.start({
|
|
textareaId : "codex_area",
|
|
data : {
|
|
items: [],
|
|
count: 0
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<link rel="stylesheet" href="codex-editor.css">
|
|
</html>
|