US-YW3: Import Scene Content as Prose
Novel writing app that bridges outlining and drafting. Built with Rust
Status: Beta
Brought to you by:
smithandweb
Originally created by: smith-and-web
As a yWriter user,
I want to have my existing scene prose imported alongside the beats,
So that I can continue drafting where I left off in yWriter.
Parent Epic: [#123]
<SCENE>
<ID>1</ID>
<Title>The Confrontation</Title>
<SceneContent>Sarah pushed open the cafe door, scanning the room for John's familiar slouch. He was there, nursing a cold coffee, avoiding her eyes.
"You took it," she said, sliding into the booth across from him. "I know you did."
John's jaw tightened. [i]She knows[/i], he thought. [i]She always knows.[/i]</SceneContent>
</SCENE>
yWriter uses BBCode-style markup:
| yWriter | HTML Equivalent | Kindling/TipTap |
|---|---|---|
[i]...[/i] |
<em>...</em> |
Italic |
[b]...[/b] |
<strong>...</strong> |
Bold |
[s]...[/s] |
<s>...</s> |
Strikethrough |
[u]...[/u] |
<u>...</u> |
Underline (if supported) |
/* ... */ |
Comment | Author note (preserve or strip) |
> ... |
Blockquote marker | Quoted text |
When scene has Goal/Conflict/Outcome:
When scene has no GCO:
Prose Import Options
────────────────────
☑ Import existing prose
○ Import as prose content (continue drafting)
○ Import as reference only (start fresh)
☑ Convert yWriter markup to rich text
☑ Preserve author comments (/* ... */)
<SceneContent> field imports as prose content[i]...[/i] → italics[b]...[/b] → bold<SceneContent> handled gracefully (no empty prose)/* ... */) optionally preserved[i]italic [b]bold italic[/b] just italic[/i][i]italic text without close
Originally posted by: smith-and-web
Implemented in PR [#140]. SceneContent is imported as scene prose with yWriter markup ([b], [i]) converted to HTML.
Related
Tickets:
#140Ticket changed by: smith-and-web