diff --git a/src/General/Settings/Sauce.html b/src/General/Settings/Sauce.html
index 46786fce6..1a5d86cc4 100644
--- a/src/General/Settings/Sauce.html
+++ b/src/General/Settings/Sauce.html
@@ -3,7 +3,7 @@
You can specify a display text by appending ;text:[text] to the URL.
You can specify the applicable boards by appending ;boards:[board1],[board2].
You can specify the applicable file types by appending ;types:[extension1],[extension2].
-These parameters will be replaced by their corresponding values:
+These parameters will be replaced by their corresponding values in the URL and displayed text:
%TURL: Thumbnail URL.
%URL: Full image URL.
%IMG: Full image URL for GIF, JPG, and PNG; thumbnail URL for other types.
diff --git a/src/Images/Sauce.coffee b/src/Images/Sauce.coffee
index 09d069f51..f716b29ae 100644
--- a/src/Images/Sauce.coffee
+++ b/src/Images/Sauce.coffee
@@ -32,7 +32,7 @@ Sauce =
ext = post.file.url.match(/[^.]*$/)[0]
skip = false
- for key of parts
+ for key in ['url', 'text']
parts[key] = parts[key].replace /%(T?URL|IMG|[sh]?MD5|board|name|%|semi)/g, (_, parameter) ->
type = Sauce.formatters[parameter] post, ext
if not type?