- Implement `Content` model for converting Tiptap raw data into HTML and plain text. - Add `Model` for storing and managing AI model configurations with pricing and metadata. - Introduce `Story` model to handle verbal styles and linguistic properties for diverse narrative structures. - Update `book.repository.ts` to refine `updateBookBasicInformation` and `insertNewPlotPoint` methods, removing unused parameters and optimizing queries.
12 lines
278 B
TypeScript
Executable File
12 lines
278 B
TypeScript
Executable File
export const mainStyle = `h1 {
|
|
font-size: 24px !important;
|
|
font-weight: bold !important;
|
|
text-indent: 24px !important;
|
|
}
|
|
p {
|
|
text-indent: 30px !important;
|
|
margin-top: 0.7em !important;
|
|
margin-bottom: 0.7em !important;
|
|
text-align: justify !important;
|
|
}`
|