Skip to content

Commit a4bed29

Browse files
committed
docs: Make bare URLs clickable (see #4085)
1 parent 8eb2d4c commit a4bed29

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

docs/automated_build_setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This page describes the setup of an automated build system for CEF.
1717

1818
# Overview
1919

20-
CEF provides tools for automatically downloading, building and packaging Chromium and CEF source code. These tools are the recommended way of building CEF locally and can also be integrated with an automated build system. Examples of automated build systems for CEF include https://cef-builds.spotifycdn.com/index.html hosted by Spotify. This document outlines how to build a system similar to Spotify's. For general CEF build instructions see the [Branches And Building](branches_and_building.md) page.
20+
CEF provides tools for automatically downloading, building and packaging Chromium and CEF source code. These tools are the recommended way of building CEF locally and can also be integrated with an automated build system. Examples of automated build systems for CEF include <https://cef-builds.spotifycdn.com/index.html> hosted by Spotify. This document outlines how to build a system similar to Spotify's. For general CEF build instructions see the [Branches And Building](branches_and_building.md) page.
2121

2222
# Services
2323

@@ -39,7 +39,7 @@ The reference build system works by executing the following steps in order:
3939

4040
Runs automatically at some interval (for example, once daily) to check if a new change has been committed to the CEF repository. The [GitHub REST API](https://docs.github.com/en/rest/branches/branches#get-a-branch) exposes an endpoint that can be queried to identify the most recent commit in a branch. For example, this will return the most recent commit for 2785 branch:
4141

42-
https://api.github.com/repos/chromiumembedded/cef/branches/2785
42+
<https://api.github.com/repos/chromiumembedded/cef/branches/2785>
4343

4444
The resulting "commit.sha" value can then be compared to the last successful CEF build version to identify if a new build is required (e.g. a sha value of "1e15b7626244fa6c6455b7a24552664e4cc14fd3" from branch 2785 will match a build artifact file named "cef_binary_3.2785.\*.g1e15b76_\*.tar.bz2").
4545

docs/branches_and_building.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Win 10+ deployment, Win 10+ build system w/ VS2022 17.13.4, Win 10.0.26100.4654
3333

3434
The following URLs should be used for downloading development versions of CEF.
3535

36-
* CEF3 - https://github.com/chromiumembedded/cef/tree/master
36+
* CEF3 - <https://github.com/chromiumembedded/cef/tree/master>
3737

3838
CEF1 is no longer actively developed or supported. See the [CEF1 Retirement Plan](http://magpcss.org/ceforum/viewtopic.php?f=10&t=10647) for details.
3939

docs/chromium_update.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ $ cd /path/to/chromium_git/chromium/src
118118
$ git log --full-history -1 -- content/public/browser/document_service_base.h
119119
```
120120
121-
Once you know the offending Git commit hash you can use the `git show <hash>` command or load `https://crrev.com/<hash>` in a web browser to see the contents of the change. Edit the patch file manually in a text editor to fix the paths and then re-run the `patch_updater.py` script as shown above.
121+
Once you know the offending Git commit hash you can use the `git show <hash>` command or load <https://crrev.com/>`<hash>` in a web browser to see the contents of the change. Edit the patch file manually in a text editor to fix the paths and then re-run the `patch_updater.py` script as shown above.
122122
123123
**To create a new patch file use this command:**
124124

docs/contributing_with_git.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The CEF project uses the Git source code management system hosted via GitHub. Th
2727

2828
Git can maintain your changes both locally and on a remote server. To work with Git efficiently the remote server locations must be configured properly.
2929

30-
1\. Log into GitHub and create a public forked version of the cef.git repository using the Fork button at https://github.com/chromiumembedded/cef. This public linked fork will be used to create and submit pull requests.
30+
1\. Log into GitHub and create a public forked version of the cef.git repository using the Fork button at <https://github.com/chromiumembedded/cef>. This public linked fork will be used to create and submit pull requests.
3131

3232
2\. Optionally, create a private unlinked fork using git commands directly. This private fork can be used for day-to-day development without exposing your work publicly.
3333

docs/linking_different_runtime_libraries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ Sandbox support (linking `cef_sandbox.lib`) is only possible when your applicati
4444
# Additional Information
4545

4646
More information on Microsoft run-time flags can be found here:
47-
http://msdn.microsoft.com/en-us/library/2kzt1wy3.aspx
47+
<http://msdn.microsoft.com/en-us/library/2kzt1wy3.aspx>

0 commit comments

Comments
 (0)