When pasting from a rich text source like HTML, LibreOffice Writer or Google Doc, it'd be great if the pasted result in Ghostwriter applied any formatting already present in the source text.
+1, would be great if this could be implemented. Ghostwriter could - Detect clipboard formats via Qt (e.g., `QClipboard::mimeData()`) - If `text/html` exists (e.g., `mimeData->hasHtml()`), fetch it (e.g., `html = mimeData->html()`) and convert it with e.g. `pandoc -f html -t gfm` (or `-t commonmark`) - Insert converted Markdown into the editor If Pandoc isn't installed or fails, we can fall back to normal paste