0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Obsidianのコードブロックで折り返し無効にするスタイル

0
Posted at

Obsidian Version 1.10.6

コードブロック関連のプラグインを入れても、編集モード中の折り返し無効がなかったりと不便だったので強制的に折り返すスタイルを書きました。

image.png

/** 【編集モード/Live Preview】 Markdownのコードブロック内の折り返しを無効化 */
.ͼ1 .cm-lineWrapping {
  white-space: nowrap !important;
}

/** 【表示モード/Reading View】 Markdownのコードブロック内の折り返しを無効化 */
.markdown-rendered pre {
  white-space: pre !important;
}

image.png

image.png

はみ出る形で表示されるが、横に長いコマンドのスクリプトを見やすく表示できるようになった。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?