mirror of
https://github.com/onlyworlds/obsidian-plugin.git
synced 2026-07-22 11:00:31 +00:00
20 lines
507 B
TypeScript
20 lines
507 B
TypeScript
// worldTemplate.ts
|
|
|
|
export const worldTemplateString = `
|
|
# World Overview: {{name}}
|
|
|
|
## Core
|
|
- **API Key:** {{api_key}}
|
|
- **Name:** {{name}}
|
|
- **Description:** {{description}}
|
|
- **Version:** {{version}}
|
|
- **Image:** None
|
|
|
|
## Time Settings
|
|
- **Time Formats:** {{time_format_names}}
|
|
- **Time Format Equivalents:** {{time_format_equivalents}}
|
|
- **Basic Time Unit:** {{time_basic_unit}}
|
|
- **Time Range Min:** {{time_range_min}}
|
|
- **Time Range Max:** {{time_range_max}}
|
|
- **Current Time:** {{time_current}}
|
|
`;
|