diff options
author | dec05eba <dec05eba@protonmail.com> | 2020-10-18 18:27:11 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-10-18 18:27:11 +0200 |
commit | 4fe0a037c82332e84b16a6f0e2847a2f9a0bd5d7 (patch) | |
tree | 1789706873ccc7095414f44b1a85fe64b6e62345 /plugins | |
parent | f5dc7e2c85436877606af46a011c2fba112185a9 (diff) |
Matrix: add a proper URI parser instead of regex for opening links. Show related body item image when pressing enter (for showing replied to media)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Plugin.hpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/plugins/Plugin.hpp b/plugins/Plugin.hpp index 1427233..d754445 100644 --- a/plugins/Plugin.hpp +++ b/plugins/Plugin.hpp @@ -3,7 +3,6 @@ #include "../include/Body.hpp" #include "../include/DownloadUtils.hpp" #include <stddef.h> -#include <string> namespace QuickMedia { enum class PluginResult { @@ -36,10 +35,6 @@ namespace QuickMedia { size_t index; }; - void html_escape_sequences(std::string &str); - void html_unescape_sequences(std::string &str); - std::string url_param_encode(const std::string ¶m); - SuggestionResult download_result_to_suggestion_result(DownloadResult download_result); PluginResult download_result_to_plugin_result(DownloadResult download_result); SearchResult download_result_to_search_result(DownloadResult download_result); |