JoshOrndorff / recipes

A Hands-On Cookbook for Aspiring Blockchain Chefs
GNU General Public License v3.0
376 stars 186 forks source link

Fix code links for nodes #366

Closed JoshOrndorff closed 3 years ago

JoshOrndorff commented 3 years ago

The "View Code" links on all four node writeups was broken. The links incorrectly pointed to lib.rs which is not present in the nodes. In the Rust sense, the analogous file would be main.rs but I think in terms of where the interesting code lies, service.rs is more analogous.

Why didn't the link checker catch this?

The link checker doesn't check links that point to github pages because of this mlc config. This is because when PRs are opened to add new recipes, the links to where those files will live is not yet live on the master branch. This decision is open for reconsideration.