summaryrefslogtreecommitdiffhomepage
path: root/ja-jp
diff options
context:
space:
mode:
authorBoris Verkhovskiy <boris.verk@gmail.com>2024-04-06 08:33:50 -0700
committerBoris Verkhovskiy <boris.verk@gmail.com>2024-04-06 08:33:50 -0700
commit3e687f1a8ccb1cd0d52a966005551d528ca141df (patch)
tree30d433ba19ec49808cc0f0de8a161835ad5f29c9 /ja-jp
parent9fa4b5af80f1cd7fe2469c198d02a21e4f8884a1 (diff)
Remove leading and trailing empty lines in code blocks
Diffstat (limited to 'ja-jp')
-rw-r--r--ja-jp/asciidoc.html.markdown1
-rw-r--r--ja-jp/bash-jp.html.markdown1
-rw-r--r--ja-jp/julia-jp.html.markdown1
-rw-r--r--ja-jp/php-jp.html.markdown1
-rw-r--r--ja-jp/r-jp.html.markdown6
5 files changed, 0 insertions, 10 deletions
diff --git a/ja-jp/asciidoc.html.markdown b/ja-jp/asciidoc.html.markdown
index af19850a..7c050429 100644
--- a/ja-jp/asciidoc.html.markdown
+++ b/ja-jp/asciidoc.html.markdown
@@ -84,7 +84,6 @@ _アンダースコアで斜体になります。_
==== Level 3 <h4>
===== Level 4 <h5>
-
```
リスト
diff --git a/ja-jp/bash-jp.html.markdown b/ja-jp/bash-jp.html.markdown
index ea8fa49f..ac8474f2 100644
--- a/ja-jp/bash-jp.html.markdown
+++ b/ja-jp/bash-jp.html.markdown
@@ -168,5 +168,4 @@ sort file.txt
uniq -d file.txt
# 1行ごとに、','が最初に出てくる前の部分を表示します
cut -d ',' -f 1 file.txt
-
```
diff --git a/ja-jp/julia-jp.html.markdown b/ja-jp/julia-jp.html.markdown
index 0c3160a2..209e4a87 100644
--- a/ja-jp/julia-jp.html.markdown
+++ b/ja-jp/julia-jp.html.markdown
@@ -15,7 +15,6 @@ Julia は科学技術計算向けに作られた、同図像性を持った(homo
この文章は、Julia の2013年10月18日現在の開発バージョンを元にしています。
```ruby
-
# ハッシュ(シャープ)記号から改行までは単一行コメントとなります。
#= 複数行コメントは、
'#=' と '=#' とで囲むことで行えます。
diff --git a/ja-jp/php-jp.html.markdown b/ja-jp/php-jp.html.markdown
index a02ae56a..191d3174 100644
--- a/ja-jp/php-jp.html.markdown
+++ b/ja-jp/php-jp.html.markdown
@@ -758,7 +758,6 @@ try {
} catch (MyException $e) {
// Handle my exception
}
-
```
## より詳しい情報
diff --git a/ja-jp/r-jp.html.markdown b/ja-jp/r-jp.html.markdown
index a8dd7c9c..c01a4168 100644
--- a/ja-jp/r-jp.html.markdown
+++ b/ja-jp/r-jp.html.markdown
@@ -759,12 +759,6 @@ ll <- as.data.table(list1)
pp <- ggplot(ll, aes(x=time,price))
pp + geom_point()
# ggplot2 には、素晴らしい関連ドキュメントがそろっています (http://docs.ggplot2.org/current/)
-
-
-
-
-
-
```