diff --git a/src/static/css/pad.css b/src/static/css/pad.css
index 40089bbfb..41d9d80d8 100644
--- a/src/static/css/pad.css
+++ b/src/static/css/pad.css
@@ -1165,9 +1165,6 @@ ul#colorpickerswatches li:hover {
#exportopen {
background-position: 0px -347px
}
-#exportwordle {
- background-position: 0px -323px
-}
#exportdokuwiki {
background-position: 0px -459px
}
@@ -1511,4 +1508,4 @@ input[type=checkbox] {
#online_count {
line-height: 24px
}
-}
\ No newline at end of file
+}
diff --git a/src/static/js/pad_impexp.js b/src/static/js/pad_impexp.js
index 23655ba47..08dd42934 100644
--- a/src/static/js/pad_impexp.js
+++ b/src/static/js/pad_impexp.js
@@ -217,7 +217,6 @@ var padimpexp = (function()
// build the export links
$("#exporthtmla").attr("href", pad_root_path + "/export/html");
$("#exportplaina").attr("href", pad_root_path + "/export/txt");
- $("#exportwordlea").attr("href", pad_root_path + "/export/wordle");
$("#exportdokuwikia").attr("href", pad_root_path + "/export/dokuwiki");
//hide stuff thats not avaible if abiword is disabled
@@ -280,17 +279,6 @@ var padimpexp = (function()
$("#impexp-disabled-clickcatcher").hide();
$("#import").css('opacity', 1);
$("#impexp-export").css('opacity', 1);
- },
- export2Wordle: function()
- {
- var padUrl = $('#exportwordlea').attr('href').replace(/\/wordle$/, '/txt')
-
- $.get(padUrl, function(data)
- {
- $('.result').html(data);
- $('#text').html(data);
- $('#wordlepost').submit();
- });
}
};
return self;
diff --git a/src/templates/pad.html b/src/templates/pad.html
index 9a5113e10..ec5495d7d 100644
--- a/src/templates/pad.html
+++ b/src/templates/pad.html
@@ -180,7 +180,6 @@