コードブロックを翻訳対象から除外する
by
mizdra
2023-04-11 [2023/04/11 19:57:03]
pre要素とcode要素にtranslate="no"を付けて翻訳対象から外します
-
/*
* @title コードブロックを翻訳対象から除外する
* @description pre要素とcode要素にtranslate="no"を付けて翻訳対象から外します
* @include *
* @license MIT License
* @javascript_url
*/
document.querySelectorAll('pre, code').forEach(el => el.setAttribute('translate', 'no'))
-
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。