Skip to content

Commit

Permalink
Merge pull request #198 from pyconjp/ISSHA-2756-remove-linkify
Browse files Browse the repository at this point in the history
Issha 2756 remove linkify
  • Loading branch information
takanory committed Jan 10, 2023
2 parents 6f93ac6 + 8d2e287 commit ea347d0
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 24 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
furo==2022.12.7
myst-parser[linkify]==0.18.1
myst-parser==0.18.1
Sphinx==5.3.0
sphinx-copybutton==0.5.1
sphinxext-opengraph==0.7.5
6 changes: 1 addition & 5 deletions source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,11 @@

numfig = True

# see: https://myst-parser.readthedocs.io/en/latest/syntax/optional.html#syntax-extensions
# see: https://myst-parser.readthedocs.io/en/latest/syntax/optional.html
myst_enable_extensions = [
"colon_fence",
"linkify",
]

# see: https://myst-parser.readthedocs.io/en/latest/syntax/optional.html#linkify
myst_linkify_fuzzy_links = False

# -- Options for HTML output -------------------------------------------------

# The theme to use for HTML and HTML Help pages. See the documentation for
Expand Down
2 changes: 1 addition & 1 deletion source/textbook/2_intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Pythonについてより詳しくは、後述の節で説明します。
シーケンス型の詳細はPythonの公式ドキュメントを参照してください。
- シーケンス (https://docs.python.org/ja/3/library/stdtypes.html#typesseq)
- シーケンス (<https://docs.python.org/ja/3/library/stdtypes.html#typesseq>)
```

```{index} list
Expand Down
4 changes: 2 additions & 2 deletions source/textbook/7_scraping.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ $ source env/bin/activate
### Requests


* URL: https://requests.readthedocs.io/
* URL: <https://requests.readthedocs.io/>

Requests について簡単に紹介します。
Requests はウェブサイトにアクセスしてHTMLなどのデータを取得するためのライブラリです。
Expand All @@ -58,7 +58,7 @@ Pythonの標準ライブラリ [urllib.request](https://docs.python.org/ja/3/lib

### Beautiful Soup 4

* URL: https://www.crummy.com/software/BeautifulSoup/bs4/doc/
* URL: <https://www.crummy.com/software/BeautifulSoup/bs4/doc/>

Beautiful Soup 4はHTMLやXMLの中身を解析して、任意の情報を取得するためのライブラリです。
Pythonの標準ライブラリ [html.parser](https://docs.python.org/ja/3/library/html.parser.html) でも同様のことは行なえますが、より便利な Beautiful Soup 4 をここでは使用します。
Expand Down
30 changes: 15 additions & 15 deletions source/textbook/8_nextstep.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ Pythonの使い方などが解説してあるWebサイト

```{list-table}
* - Python チュートリアル
- https://docs.python.org/ja/3/tutorial/
- <https://docs.python.org/ja/3/tutorial/>
* - Python 標準ライブラリ
- https://docs.python.org/ja/3/library/index.html
- <https://docs.python.org/ja/3/library/index.html>
* - Dive into Python 3 日本語版
- http://diveintopython3-ja.rdy.jp/
- <http://diveintopython3-ja.rdy.jp/>
* - Python HOWTO
- https://docs.python.org/ja/3/howto/
- <https://docs.python.org/ja/3/howto/>
```

```{index} Web sites to learn programming
Expand All @@ -33,13 +33,13 @@ Pythonの使い方などが解説してあるWebサイト
```{list-table}
* - PyQ : Python学習プラットフォーム
- https://pyq.jp/
- <https://pyq.jp/>
* - Paiza : ITエンジニア・プログラマ向けの転職・就活・学習サービス
- https://paiza.jp/
- <https://paiza.jp/>
* - ProjectEuler : プログラミングのチャレンジングプラットフォーム
- https://projecteuler.net/
- <https://projecteuler.net/>
* - CheckIO : Pythonコードを書いてステージを攻略するゲーム
- https://checkio.org/
- <https://checkio.org/>
```

```{index} Q&A web sites for programming
Expand All @@ -51,9 +51,9 @@ Pythonの使い方などが解説してあるWebサイト

```{list-table}
* - Stack Overflow
- https://ja.stackoverflow.com/
- <https://ja.stackoverflow.com/>
* - teratail
- https://teratail.com/
- <https://teratail.com/>
```

### その他
Expand Down Expand Up @@ -98,7 +98,7 @@ Pythonやプログラムの学習におすすめの書籍をいくつか紹介
Pythonのインストール、エディタの使い方、コマンドラインの使い方など、初めてプログラミングに触れる方向けに図を多く使い、手順を分かりやすく紹介している。
* - ![Pythonチュートリアル 第4版](images/book-tutorial.jpg)
- [Pythonチュートリアル 第4版](https://www.oreilly.co.jp/books/9784873119359/)
- Python公式の読み物の書籍版。Web上でも `Python チュートリアル <https://docs.python.org/ja/3/tutorial/index.html>`_ が参照できる。
- Python公式の読み物の書籍版。Web上でも [Python チュートリアル](https://docs.python.org/ja/3/tutorial/index.html) が参照できる。
リファレンスと異なり、説明を多く書いていて、他の言語経験者であれば十分理解できる。
このチュートリアルが難しい人は上にある入門書を読むと良さそう。
* - ![自走プログラマー](images/book-jisou-programmer.jpg)
Expand All @@ -123,10 +123,10 @@ Pythonやプログラムの学習におすすめの書籍をいくつか紹介
コミュニティに参加して、仲間を作ることもおすすめです。
みなさんの地域でコミュニティを立ち上げることもおすすめです。

- python.jp <https://www.python.jp/>
- PyCon JP <https://pycon.jp>
- Python mini Hack-a-thon <https://pyhack.connpass.com/>
- PyLadies Tokyo <https://pyladies-tokyo.connpass.com/>
- python.jp: <https://www.python.jp/>
- PyCon JP: <https://pycon.jp>
- Python mini Hack-a-thon: <https://pyhack.connpass.com/>
- PyLadies Tokyo: <https://pyladies-tokyo.connpass.com/>

```{index} pair: Community; slack
```
Expand Down

0 comments on commit ea347d0

Please sign in to comment.