すでに下記リンクを参考にクリップボードを作ったのですが、「"〇〇"」ダブルクォートからダブルクォートが表示されなくて困ってます。。
https://tutorialmore.com/questions-2402616.html
▼事象
パラメータのText入力に
①例えば「"〇〇"」だと動作しなくなる
②例えば「ここは、"〇〇"」だと「ここは、」しかコピーできない
といった感じになります。
どうすれば表示することができるようになるのでしょうか?
※↓結構無駄なものが満載です。。。
## Macro title: text to copy ## Macro has a body: Y ## Body processing: Rendered ## ## Developed by: https://stackoverflow.com/users/1948252/ ## Date created: 2018-06-28 ## @param AllowLineWrap:type=boolean|default=false ## @param Text:title=TabName|type=string|required=true|desc=Please input clipboard text. ## strip tags (in case they were pasted) to remove any formatting #set ($body = $body.replaceAll("<.*?>","")) #if ($paramAllowLineWrap == true) #set ($whitespace = "normal") #else #set ($whitespace = "nowrap") #end <!-- for the clipboard icon etc. --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <script> window.onload=function() { var clipboard = new ClipboardJS('.copy-text-button'); clipboard.on("success", function(e) { console.log(e); var button = $(e.trigger); var title = button.prop("title"); button.addClass("fa-check-square"); button.html(" copied to clipboard"); function reset() { button.removeClass("fa-check-square") button.html(""); } window.setTimeout(reset, 5000); }); clipboard.on('error', function(e) { console.log(e); }); } </script> <span class="panel" style="white-space: $whitespace;font-family:monospace;font-size:1em"> <span class="panelContent">$paramText</span> <button class="copy-text-button fa fa-clipboard" data-clipboard-text="$paramText" title="click to copy"> </span>
あなたの回答
tips
プレビュー