organize by the service, not by the package
@pachadotdev, I like the parts of the task view that first declares the web service (in italics), and then lists the associated packages. Like the Azure section has been.
I tried it out with an are that I'm familiar with (in commit 998e5ae51ca3e441a7d41436d03dbd3947174f6e).

Do you have opinions?
- I think it's easier to read because the user likely looks for the service first (and then what packages can help them) instead of looking for the package first (and then what things it does)
- Linking to the service (like REDCap or WuFoo) helps the reader learn about it, but it increases the burden on us to find the link and maintain it.
@zeileis, are there any tools you recommend for checking urls in CTVs (that are not links to packages). Similar to urlchecker for package development? Like something that what catch a url (eg, "https://curl.se/libcurl/") that has changed?
We currently do not have support for this in the package. The reason is that most URLs are autogenerated by the task views and then there is typically only a rather short list of additional links at the end.
Of course, the WebTechnologies task view is different here. One possible way to check this would be to use the functionality from the basic tools package (leveraging curl behind the scenes). It's relatively easy to use albeit unexported, unfortunately.
The first step is to construct a URL "database", simply a data.frame with additional class url_db, containing the URL and information about the Parent document where this is listed. Subsequently, this database can then be checked. For example:
db <- tools:::url_db_from_installed_packages("ctv")
head(db, 3)
## URL Parent
## 1 https://github.com/cran-task-views/ctv/ ctv/DESCRIPTION
## 2 https://ctv.R-Forge.R-project.org/ ctv/DESCRIPTION
## 3 https://CRAN.R-project.org/doc/Rnews/ ctv/CITATION
tools:::check_url_db(db)
So you could write a function url_db_from_ctv_md() or something along those lines
@pachadotdev, I experimented with another section. I bolded instead of italicized. Both are ok to my eye, neither are great. I'm open to alternatives.
after:

before:

this is neat! IDK what do senior members think about this
I like prefixing each bullet point with the name of the service. That might make it easier to find a specific service one is looking for. However, I wouldn't hyperlink each of the services. This makes it harder to spot what are the services and what are the CRAN packages. If users are really not sure what service the R package is for, they have to click on the R package first and then use the information provided there.
Cool. I agree it's harder to read. And the hyperlinks (to the service) create more work for us to maintain.
I think the hyperlinks might improve SEO for the task view, but I'm ok with the tradeoff.
How does this look to you guys? Do prefer the bold (first section) or the italic (second section)?

Nice. No strong preference from my side.