Ryan Sobol
Ryan Sobol
Is this code example missing the `try await` keywords when chopping veggies? In the previous example, inside the loop that would not produce any meaningful concurrency, line 190 is written:...
Since both the `chopVegetables()` and `preheatOven(temperature:)` async functions can throw, does this code example need to prepend a `try` keyword before awaiting on them?
The `makeDinnerTaskGroup()` code example has a couple of potential issues: 1. The `withTaskGroup()` function doesn't seem to be defined or mentioned anywhere else in this proposal. Do you mean `Task.withGroup`?...
The paragraph on line 181 starts with the following sentence. > Bringing it back to our example, note that the `chopVegetables()` function might throw an error if, say, there is...
For the use case when a content page is a self-contained HTML, ERB, HAML, etc. document
Either RDiscount or RedCarpet - https://github.com/rtomayko/rdiscount/ - https://github.com/vmg/redcarpet Keep in mind the library will be used by both Tilt and Yard: - http://rubydoc.info/docs/yard/0.7.1/YARD/Templates/Helpers/MarkupHelper - https://github.com/rtomayko/tilt/blob/master/lib/tilt/rdiscount.rb - https://github.com/rtomayko/tilt/blob/master/lib/tilt/redcarpet.rb
https://github.com/sstephenson/sprockets https://github.com/maccman/sinatra-blog
Assume the following content pages in `content/blog/`: ``` $ tree content/blog/ content/blog/ ├── 1.md ├── 2.md ├── 3.md ├── 4.md ├── 5.md ├── 6.md ├── 7.md ├── 8.md ├── 9.md...