anujraghuvanshi / cordova-clipboard-plugin

Cordova Clipboard plugin - With Support to Copy HTML also
MIT License
4 stars 3 forks source link

HTML content pasted as plain text (Android) #3

Open currim opened 3 years ago

currim commented 3 years ago

Thank you for developing this plugin.

Currently when i copy HTML marked up text, it still pastes as plain text. This is testing on Android.

For example:

var text = "Hello <strong>World</strong>!";
cordova.plugins.clipboard.copy(text);
cordova.plugins.clipboard.paste(function (text) { alert(text); });

This returns unformatted / plaintext "Hello world"

Any help is appreciated.