| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- [
- {
- "id": "your-book-id",
- "title": "你的作品名",
- "author": "作者名",
- "category": "分类",
- "description": "作品简介",
- "wordCount": "约 12 万字",
- "coverStyle": "linear-gradient(135deg, #7b5c44, #2e405a)",
- "sections": [
- {
- "id": "lore-world",
- "title": "世界观设定",
- "kind": "lore",
- "order": 1,
- "entries": [
- {
- "id": "lore-world-1",
- "title": "资料一 世界规则",
- "kind": "lore",
- "order": 1,
- "content": [
- "这里放第一段设定资料。",
- "这里放第二段设定资料。"
- ]
- }
- ]
- },
- {
- "id": "lore-roles",
- "title": "人物档案",
- "kind": "lore",
- "order": 2,
- "entries": [
- {
- "id": "lore-roles-1",
- "title": "资料二 主角档案",
- "kind": "lore",
- "order": 1,
- "content": [
- "这里放角色资料。",
- "也可以拆成多条资料。"
- ]
- }
- ]
- },
- {
- "id": "novel-volume-1",
- "title": "正文 第一卷",
- "kind": "novel",
- "order": 100,
- "entries": [
- {
- "id": "novel-volume-1-1",
- "title": "第一章 章节名",
- "kind": "novel",
- "order": 1,
- "content": [
- "这里放正文第一段。",
- "这里放正文第二段。"
- ]
- },
- {
- "id": "novel-volume-1-2",
- "title": "第二章 下一节",
- "kind": "novel",
- "order": 2,
- "content": [
- "这里继续放正文内容。"
- ]
- }
- ]
- }
- ]
- }
- ]
|