Skip to content

Commit 678f303

Browse files
authored
Merge pull request #348 from flairNLP/fix-tutorial-links
Fixes broken tutorial links
2 parents 4cb13c1 + a89b062 commit 678f303

4 files changed

+6
-6
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,9 @@ We provide **quick tutorials** to get you started with the library:
129129

130130
1. [**Tutorial 1: How to crawl news with Fundus**](docs/1_getting_started.md)
131131
2. [**Tutorial 2: How to crawl articles from CC-NEWS**](docs/2_crawl_from_cc_news.md)
132-
3. [**Tutorial 3: The Article Class**](docs/3_the_article_class)
133-
4. [**Tutorial 4: How to filter articles**](docs/4_how_to_filter_articles)
134-
5. [**Tutorial 5: How to search for publishers**](docs/5_how_to_search_for_publishers)
132+
3. [**Tutorial 3: The Article Class**](docs/3_the_article_class.md)
133+
4. [**Tutorial 4: How to filter articles**](docs/4_how_to_filter_articles.md)
134+
5. [**Tutorial 5: How to search for publishers**](docs/5_how_to_search_for_publishers.md)
135135

136136
If you wish to contribute check out these tutorials:
137137
1. [**How to contribute**](docs/how_to_contribute.md)

docs/2_crawl_from_cc_news.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,5 @@ crawler = CCNewsCrawler(*PublisherCollection, processes=4)
6868

6969
To omit multiprocessing, pass `0` to the `processes` parameter.
7070

71-
In the [next section](3_the_article_class) we will introduce you to the `Article` class.
71+
In the [next section](3_the_article_class.md) we will introduce you to the `Article` class.
7272

docs/3_the_article_class.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,4 +137,4 @@ Should print this:
137137
en
138138
``
139139

140-
In the [**next section**](4_how_to_filter_articles) we will show you how to filter articles.
140+
In the [**next section**](4_how_to_filter_articles.md) we will show you how to filter articles.

docs/4_how_to_filter_articles.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,4 +196,4 @@ crawler = Crawler(PublisherCollection.us, restrict_sources_to=[NewsMap])
196196
The `crawl()` method supports functionality to filter out articles with URLs previously encountered in this run.
197197
You can alter this behavior by setting the `only_unique` parameter.
198198

199-
In the [next section](5_how_to_search_for_publishers) we will show you how to search through publishers in the `PublisherCollection`.
199+
In the [next section](5_how_to_search_for_publishers.md) we will show you how to search through publishers in the `PublisherCollection`.

0 commit comments

Comments
 (0)