about summary refs log tree commit diff
path: root/app/lib/command_tag/processor.rb
diff options
context:
space:
mode:
authorFire Demon <firedemon@creature.cafe>2020-07-26 03:54:13 -0500
committerFire Demon <firedemon@creature.cafe>2020-08-30 05:45:16 -0500
commita827f14c383949535f7fa01ddfa5a87c85fac41d (patch)
tree23cecc11412e34f78961d3941816c1aaa77539a9 /app/lib/command_tag/processor.rb
parente2bd72f3beb534795fbe06c0307097987cf5486a (diff)
[Command Tags] Handle representing code blocks for all content types
Diffstat (limited to 'app/lib/command_tag/processor.rb')
-rw-r--r--app/lib/command_tag/processor.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/lib/command_tag/processor.rb b/app/lib/command_tag/processor.rb
index 9e9812bb6..6e740ba98 100644
--- a/app/lib/command_tag/processor.rb
+++ b/app/lib/command_tag/processor.rb
@@ -187,6 +187,10 @@ class CommandTag::Processor
     text
   end
 
+  def html_encode(text)
+    (@html_entities ||= HTMLEntities.new).encode(text)
+  end
+
   def var(name)
     @vars[name].presence || []
   end