-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Paste as HTML #31
Comments
X11's clipboard protocol does have content type negotiation (I think the relevant documentation is around here: https://tronche.com/gui/x/icccm/sec-2.html#s-2.6.2). I'm not sure about a dedicated target for HTML (shouldn't that be a subset of UTF-8, and interpreted at a higher level than this?), but adding support for images is definitely a good idea. |
As far as i remember browsers might register HTML as format to clipboard. |
I believe I can confirm. Browser copied HTML registers separate UTF-8 text content that strips HTML tags (as if you were to paste into notepad.exe) and HTML content that preserves tags (as if you were to paste into Word). |
I want to request this feature, as well as track the steps toward making it happen!
Proposal:
ctx.get_contents_by_type(ClipboardType::HTML)
, Text, Image, etc.Windows:
register_format
https://doumanash.github.io/clipboard-win/doc/clipboard_win/wrapper/fn.register_format.htmlOS X:
stringForType
can be used on this platform. Not sure how that differs yet.Linux:
The text was updated successfully, but these errors were encountered: