Add angle brackets to bare URLs

See https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md034
This commit is contained in:
Jan Van Bruggen 2022-09-07 22:24:25 -06:00
parent 3fa6e4c6ef
commit 3902668ce5
No known key found for this signature in database
GPG key ID: FE2A4E38E0FA6134
7 changed files with 8 additions and 9 deletions

View file

@ -3,7 +3,6 @@ config:
fenced-code-language: false fenced-code-language: false
first-line-heading: false first-line-heading: false
line-length: false line-length: false
no-bare-urls: false
no-duplicate-heading: false no-duplicate-heading: false
no-emphasis-as-heading: false no-emphasis-as-heading: false
no-hard-tabs: false no-hard-tabs: false

View file

@ -158,7 +158,7 @@ By default, the script installs it as `clang-13`. You can address this with syml
sudo ln -s /usr/bin/clang-13 /usr/bin/clang sudo ln -s /usr/bin/clang-13 /usr/bin/clang
``` ```
There are also alternative installation options at http://releases.llvm.org/download.html There are also alternative installation options at <http://releases.llvm.org/download.html>
[Troubleshooting](#troubleshooting) [Troubleshooting](#troubleshooting)

View file

@ -41,4 +41,4 @@ Moderators who do not follow or enforce the Code of Conduct in good faith may fa
## Attribution ## Attribution
This Code of Conduct is adapted from the Contributor Covenant, version 1.4, available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html This Code of Conduct is adapted from the Contributor Covenant, version 1.4, available at <https://www.contributor-covenant.org/version/1/4/code-of-conduct.html>

View file

@ -123,7 +123,7 @@ If a function is "small enough" it's probably worth inlining too.
## Fusion ## Fusion
https://www.microsoft.com/en-us/research/wp-content/uploads/2016/07/deforestation-short-cut.pdf <https://www.microsoft.com/en-us/research/wp-content/uploads/2016/07/deforestation-short-cut.pdf>
Basic approach: Basic approach:
@ -139,7 +139,7 @@ Advanced approach:
Express operations like map and filter in terms of toStream and fromStream, to unlock more deforestation. Express operations like map and filter in terms of toStream and fromStream, to unlock more deforestation.
More info on here: More info on here:
https://wiki.haskell.org/GHC_optimisations#Fusion <https://wiki.haskell.org/GHC_optimisations#Fusion>
## Getting started with the code ## Getting started with the code
@ -172,7 +172,7 @@ ask the compiler to emit debug information during various stages of compilation.
There are some goals for more sophisticated debugging tools: There are some goals for more sophisticated debugging tools:
- A nicer unification debugger, see https://github.com/roc-lang/roc/issues/2486. - A nicer unification debugger, see <https://github.com/roc-lang/roc/issues/2486>.
Any interest in helping out here is greatly appreciated. Any interest in helping out here is greatly appreciated.
### General Tips ### General Tips

View file

@ -5,7 +5,7 @@ Ayaz Hafiz
## Summary ## Summary
This document describes how polymorphic lambda sets are specialized and resolved This document describes how polymorphic lambda sets are specialized and resolved
in the compiler's type solver. It's derived from the original document at https://rwx.notion.site/Ambient-Lambda-Set-Specialization-50e0208a39844ad096626f4143a6394e. in the compiler's type solver. It's derived from the original document at <https://rwx.notion.site/Ambient-Lambda-Set-Specialization-50e0208a39844ad096626f4143a6394e>.
TL;DR: lambda sets are resolved by unifying their ambient arrow types in a “bottom-up” fashion. TL;DR: lambda sets are resolved by unifying their ambient arrow types in a “bottom-up” fashion.

View file

@ -39,7 +39,7 @@ python3 -m http.server
### 3. Open your browser ### 3. Open your browser
You should be able to find the Roc REPL at http://127.0.0.1:8000/repl (or whatever port your web server mentioned when it started up.) You should be able to find the Roc REPL at <http://127.0.0.1:8000/repl> (or whatever port your web server mentioned when it started up.)
**Warning:** This is work in progress! Not all language features are implemented yet, error messages don't look nice yet, up/down arrows don't work for history, etc. **Warning:** This is work in progress! Not all language features are implemented yet, error messages don't look nice yet, up/down arrows don't work for history, etc.

View file

@ -21,7 +21,7 @@ npm install -g http-server
http-server http-server
``` ```
Now open your browser at http://localhost:8080 Now open your browser at <http://localhost:8080>
## Design Notes ## Design Notes