mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-29 09:47:50 +08:00
21 lines
427 B
Ruby
21 lines
427 B
Ruby
class CopyToClipboard < Liquid::Tag
|
|
def initialize(tagName, markup, tokens)
|
|
super
|
|
|
|
@text = markup
|
|
end
|
|
|
|
def render(context)
|
|
text = @text.strip.gsub(/^'|"/, '').gsub(/'|"$/, '')
|
|
|
|
<<-HTML
|
|
<div class="copy-area__wrapper">
|
|
<div class="copy-area">
|
|
<div class="copy-area__text-field js-copy-area-text-field">#{text}</div>
|
|
</div>
|
|
</div>
|
|
HTML
|
|
end
|
|
|
|
Liquid::Template.register_tag "copyArea", self
|
|
end |