Use Jekyll to prevent duplication.
README.md now has a Jekyll tag to include mentors.md.
This commit is contained in:
@@ -24,6 +24,8 @@ If there are any topics of interest that you're looking for that aren't covered
|
|||||||
|
|
||||||
See https://rustbeginners.github.io/awesome-rust-mentors/
|
See https://rustbeginners.github.io/awesome-rust-mentors/
|
||||||
|
|
||||||
|
{% include mentors.md %}
|
||||||
|
|
||||||
## Additional Resources
|
## Additional Resources
|
||||||
* [Rust Language Cheat Sheet](https://cheats.rs/)
|
* [Rust Language Cheat Sheet](https://cheats.rs/)
|
||||||
* [rust-learning](https://github.com/ctjhoa/rust-learning)
|
* [rust-learning](https://github.com/ctjhoa/rust-learning)
|
||||||
|
|||||||
3
_config.yml
Normal file
3
_config.yml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
theme: jekyll-theme-cayman
|
||||||
|
github:
|
||||||
|
is_project_page: false
|
||||||
@@ -1,29 +1,3 @@
|
|||||||
# [awesome-rust-mentors](https://github.com/RustBeginners/awesome-rust-mentors)
|
|
||||||
|
|
||||||
A curated list of mentors who are interested in helping new contributors get involved in Rust.
|
|
||||||
|
|
||||||
### Code of Conduct
|
|
||||||
|
|
||||||
All mentors and mentees are expected to abide by the Rust community [code of conduct](https://github.com/rust-lang/rust/blob/master/CODE_OF_CONDUCT.md). Violators will be removed from this list.
|
|
||||||
|
|
||||||
## New Mentors
|
|
||||||
|
|
||||||
To apply, simply [open an issue](https://github.com/RustBeginners/awesome-rust-mentors/issues/new?assignees=&labels=mentor+application&template=new-mentor.md&title=). There is a template set up to help you get started quickly.
|
|
||||||
|
|
||||||
### Expectations For Mentors
|
|
||||||
|
|
||||||
[Work in progress](https://github.com/RustBeginners/awesome-rust-mentors/issues/1)
|
|
||||||
|
|
||||||
### Expectations For Mentees
|
|
||||||
|
|
||||||
[Work in progress](https://github.com/RustBeginners/awesome-rust-mentors/issues/11)
|
|
||||||
|
|
||||||
### Missing Mentor Topics
|
|
||||||
|
|
||||||
If there are any topics of interest that you're looking for that aren't covered by any of the mentors here just open an issue to let us know! We will do our best to find a mentor for that topic / library / whatever and get them to sign up.
|
|
||||||
|
|
||||||
## Mentors
|
|
||||||
|
|
||||||
### Ana Hobden ([@hoverbear](https://github.com/hoverbear))
|
### Ana Hobden ([@hoverbear](https://github.com/hoverbear))
|
||||||
* **Contact:** Email ([ana@hoverbear.org](mailto:ana@hoverbear.org), Twitter ([@a_hoverbear](https://twitter.com/a_hoverbear))
|
* **Contact:** Email ([ana@hoverbear.org](mailto:ana@hoverbear.org), Twitter ([@a_hoverbear](https://twitter.com/a_hoverbear))
|
||||||
* **Spoken Language:** _English_, some German, some Chinese
|
* **Spoken Language:** _English_, some German, some Chinese
|
||||||
@@ -161,15 +135,13 @@ If there are any topics of interest that you're looking for that aren't covered
|
|||||||
* **Spoken Languages**: English
|
* **Spoken Languages**: English
|
||||||
* **Topics**: Language basics, rustc development (especially diagnostics)
|
* **Topics**: Language basics, rustc development (especially diagnostics)
|
||||||
|
|
||||||
## Additional Resources
|
<h1 id="mentors-end"></h1>
|
||||||
* [Rust Language Cheat Sheet](https://cheats.rs/)
|
|
||||||
* [rust-learning](https://github.com/ctjhoa/rust-learning)
|
|
||||||
* [awesome-rust](https://github.com/rust-unofficial/awesome-rust#resources)
|
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
let people = [];
|
let people = [];
|
||||||
let e = document.getElementById("mentors");
|
let e = document.getElementById("mentors");
|
||||||
while (e.nodeName != 'H3') { e = e.nextSibling; }
|
while (e.nextSibling.nodeName != 'H3') e.nextSibling.remove();
|
||||||
|
e = e.nextSibling;
|
||||||
do {
|
do {
|
||||||
let person = [];
|
let person = [];
|
||||||
do {
|
do {
|
||||||
@@ -187,4 +159,5 @@ people.forEach(person => {
|
|||||||
e.parentNode.insertBefore(x, e);
|
e.parentNode.insertBefore(x, e);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
e.remove();
|
||||||
</script>
|
</script>
|
||||||
Reference in New Issue
Block a user