-
-
Notifications
You must be signed in to change notification settings - Fork 291
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix https and anchor links in non-episode files
During my processing of this lesson, I had not enabled link validation of the auxilary markdown files (that is, non-episode files), so a lot of them had https links and sneaky ways of creating anchor links that were not accessible (see #1497 (comment)) As of the update to {pegboard} 0.5.0, these external files are now processed.
- Loading branch information
Showing
7 changed files
with
173 additions
and
166 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,43 +26,43 @@ or a factual error. | |
This is a good way to introduce yourself | ||
and to meet some of our community members. | ||
|
||
1. If you do not have a [GitHub][github] account, | ||
you can [send us comments by email][contact]. | ||
However, | ||
we will be able to respond more quickly if you use one of the other methods described below. | ||
|
||
2. If you have a [GitHub][github] account, | ||
or are willing to [create one][github-join], | ||
but do not know how to use Git, | ||
you can report problems or suggest improvements by [creating an issue][issues]. | ||
This allows us to assign the item to someone | ||
and to respond to it in a threaded discussion. | ||
|
||
3. If you are comfortable with Git, | ||
and would like to add or change material, | ||
you can submit a pull request (PR). | ||
Instructions for doing this are [included below](#using-github). | ||
1. If you do not have a [GitHub][github] account, | ||
you can [send us comments by email][contact]. | ||
However, | ||
we will be able to respond more quickly if you use one of the other methods described below. | ||
|
||
2. If you have a [GitHub][github] account, | ||
or are willing to [create one][github-join], | ||
but do not know how to use Git, | ||
you can report problems or suggest improvements by [creating an issue][issues]. | ||
This allows us to assign the item to someone | ||
and to respond to it in a threaded discussion. | ||
|
||
3. If you are comfortable with Git, | ||
and would like to add or change material, | ||
you can submit a pull request (PR). | ||
Instructions for doing this are [included below](#using-github). | ||
|
||
## Where to Contribute | ||
|
||
1. If you wish to change this lesson, | ||
please work in <https://github.com/swcarpentry/shell-novice>, | ||
which can be viewed at <https://swcarpentry.github.io/shell-novice>. | ||
1. If you wish to change this lesson, | ||
please work in [https://github.com/swcarpentry/shell-novice](https://github.com/swcarpentry/shell-novice), | ||
which can be viewed at [https://swcarpentry.github.io/shell-novice](https://swcarpentry.github.io/shell-novice). | ||
|
||
2. If you wish to change the example lesson, | ||
please work in <https://github.com/carpentries/lesson-example>, | ||
which documents the format of our lessons | ||
and can be viewed at <https://carpentries.github.io/lesson-example>. | ||
2. If you wish to change the example lesson, | ||
please work in [https://github.com/carpentries/lesson-example](https://github.com/carpentries/lesson-example), | ||
which documents the format of our lessons | ||
and can be viewed at [https://carpentries.github.io/lesson-example](https://carpentries.github.io/lesson-example). | ||
|
||
3. If you wish to change the template used for workshop websites, | ||
please work in <https://github.com/carpentries/workshop-template>. | ||
The home page of that repository explains how to set up workshop websites, | ||
while the extra pages in <https://carpentries.github.io/workshop-template> | ||
provide more background on our design choices. | ||
3. If you wish to change the template used for workshop websites, | ||
please work in [https://github.com/carpentries/workshop-template](https://github.com/carpentries/workshop-template). | ||
The home page of that repository explains how to set up workshop websites, | ||
while the extra pages in [https://carpentries.github.io/workshop-template](https://carpentries.github.io/workshop-template) | ||
provide more background on our design choices. | ||
|
||
4. If you wish to change CSS style files, tools, | ||
or HTML boilerplate for lessons or workshops stored in `_includes` or `_layouts`, | ||
please work in <https://github.com/carpentries/styles>. | ||
4. If you wish to change CSS style files, tools, | ||
or HTML boilerplate for lessons or workshops stored in `_includes` or `_layouts`, | ||
please work in [https://github.com/carpentries/styles](https://github.com/carpentries/styles). | ||
|
||
## What to Contribute | ||
|
||
|
@@ -106,22 +106,23 @@ you may want to look at | |
[How to Contribute to an Open Source Project on GitHub][how-contribute]. | ||
In brief: | ||
|
||
1. The published copy of the lesson is in the `gh-pages` branch of the repository | ||
(so that GitHub will regenerate it automatically). | ||
Please create all branches from that, | ||
and merge the [master repository][repo]'s `gh-pages` branch into your `gh-pages` branch | ||
before starting work. | ||
Please do *not* work directly in your `gh-pages` branch, | ||
since that will make it difficult for you to work on other contributions. | ||
|
||
2. We use [GitHub flow][github-flow] to manage changes: | ||
1. Create a new branch in your desktop copy of this repository for each significant change. | ||
2. Commit the change in that branch. | ||
3. Push that branch to your fork of this repository on GitHub. | ||
4. Submit a pull request from that branch to the [master repository][repo]. | ||
5. If you receive feedback, | ||
make changes on your desktop and push to your branch on GitHub: | ||
the pull request will update automatically. | ||
1. The published copy of the lesson is in the `gh-pages` branch of the repository | ||
(so that GitHub will regenerate it automatically). | ||
Please create all branches from that, | ||
and merge the [master repository][repo]'s `gh-pages` branch into your `gh-pages` branch | ||
before starting work. | ||
Please do *not* work directly in your `gh-pages` branch, | ||
since that will make it difficult for you to work on other contributions. | ||
|
||
2. We use [GitHub flow][github-flow] to manage changes: | ||
|
||
1. Create a new branch in your desktop copy of this repository for each significant change. | ||
2. Commit the change in that branch. | ||
3. Push that branch to your fork of this repository on GitHub. | ||
4. Submit a pull request from that branch to the [master repository][repo]. | ||
5. If you receive feedback, | ||
make changes on your desktop and push to your branch on GitHub: | ||
the pull request will update automatically. | ||
|
||
Each lesson has two maintainers who review issues and pull requests | ||
or encourage others to do so. | ||
|
@@ -135,17 +136,18 @@ happens on the [discussion mailing list][discuss-list], | |
which everyone is welcome to join. | ||
You can also [reach us by email][contact]. | ||
|
||
[swc-site]: https://software-carpentry.org/ | ||
[dc-site]: https://datacarpentry.org/ | ||
[github]: https://github.com | ||
[contact]: mailto:[email protected] | ||
[dc-issues]: https://github.com/issues?q=user%3Adatacarpentry | ||
[dc-lessons]: http://datacarpentry.org/lessons/ | ||
[dc-site]: http://datacarpentry.org/ | ||
[discuss-list]: http://lists.software-carpentry.org/listinfo/discuss | ||
[github]: http://github.com | ||
[github-flow]: https://guides.github.com/introduction/flow/ | ||
[github-join]: https://github.com/join | ||
[how-contribute]: https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github | ||
[issues]: https://github.com/swcarpentry/shell-novice/issues/ | ||
[repo]: https://github.com/swcarpentry/shell-novice/ | ||
[dc-issues]: https://github.com/issues?q=user%3Adatacarpentry | ||
[swc-issues]: https://github.com/issues?q=user%3Aswcarpentry | ||
[swc-lessons]: http://software-carpentry.org/lessons/ | ||
[swc-site]: http://software-carpentry.org/ | ||
[how-contribute]: https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github | ||
[repo]: https://github.com/swcarpentry/shell-novice/ | ||
[github-flow]: https://guides.github.com/introduction/flow/ | ||
[discuss-list]: https://lists.software-carpentry.org/listinfo/discuss | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.