jensbuehl / aoe4-guides

Source code for aoe4guides.com: Yet another Age of Empires IV build order tool
https://aoe4guides.com
MIT License
18 stars 7 forks source link

Paste does add HTML instead of plain text due to v-html #33

Closed jensbuehl closed 1 year ago

jensbuehl commented 1 year ago

Idea: Intercept paste event and do some magic. https://stackoverflow.com/questions/54822753/how-to-filter-text-content-on-copy-paste-operation-in-a-editable-component-vue

jensbuehl commented 1 year ago

Reason: We use contenteditable + v-html

jensbuehl commented 1 year ago

Problem was: DetailsPage did show text => show html tags EditorPage did show html => shows text as expected

Fixed by changing both to v-html for now.