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