wiki マークアップや HTML を扱う
Jira のプロセスとワークフローを自動化する
- 高度なフィールド編集 (JSON)
- 自動化アクション
- 自動化条件
- 自動化トリガー
- ユーザー名をユーザーアカウント ID に転換
- ルールを作成および編集する
- ルールをデバッグする
- 課題のフィールドの編集
- ルールを有効および無効にする
- フィールドに対応したスマート バリューを見つける
- wiki マークアップや HTML を扱う
- 使用量はどのように計算されますか?
- 課題で手動でルールを実行する
- 自動化機能で課題を移動する
- ルールを最適化する
- ルールをラベルで整理する
- スマート バリュー - 日付と時刻の関数
- スマート バリュー - 全般
- スマート バリュー - JSON 関数
- スマート バリュー - リスト
- スマート バリュー - 数式
- スマート バリュー - テキスト フィールド
- スマート バリュー - ユーザー
- 課題のトランジション
- 自動化機能を Microsoft Teams と使用する
- 自動化機能を Slack と使用する
- スマート バリューを使用してリスト値にアクセスする
- スマート バリューを使用して数値を挿入する
- スマート バリューを使用した日付の操作とフォーマット
- スマート バリューを使用してテキスト文字列を操作する
- ルールのデータを確認する
- パフォーマンスに関するインサイトを表示
- 使用量を確認する
- 自動化ルールとは
- 課題の条件とは
- サービス上限について
- スマート バリューとは
- 監査ログとは
- どのサードパーティ アプリケーションを連携できますか?
- 関連する課題の操作
- スマート バリュー - 開発
- 別のユーザーとしてルールを実行する
- ルール実行者とは
- 自動化ルールをインポート/エクスポートする
- 自動化ルールをあるユーザーから別のユーザーに転送する
- Automation for Jira Server と Jira Cloud の違いについて
- スマート バリュー - 条件ロジック
- スマート バリュー - Insight
- スマート値 - プロジェクト
- 自動化ブランチ
- ルール分岐とは?
このページの内容
関連コンテンツ
- 関連コンテンツがありません
robots | noindex |
robots | noindex |
When referencing a field to send an email or notification, you may return undesirable content, specifically, wiki markup. For example, using {{issue.description}}
will produce:
This text is {color:red}RED{color}
You can use automation to render this as HTML or plain text.
HTML のレンダリング
To render HTML, add .html to the end of a field. For example, {{issue.description.html}}
will produce:
<p>This text is <font color="red">RED</font></p>
上記によって説明は HTML に変換されます。
When sending HTML emails, Jira incorporates existing styles into the email, which may affect how your HTML looks.
プレーンテキストのレンダリング
Alternatively, you can extract all text from HTML/wiki markup by adding .text to the end of a field. This is often the best way to send a clean email or notification. For example, {{issue.description.text}}
will produce:
This text is RED
You can also strip unwanted wiki markup from issues created via HTML emails (e.g. font/color tags in descriptions).
{{issue.description.text}}
サポートされるフィールド
The following fields support rending of HTML or plain text:
説明
環境
テキスト エリア カスタム フィールド
コメント
詳細
See use cases where you might use wiki-markup and html in our Jira automation template library.
関連コンテンツ
- 関連コンテンツがありません