mirror of
https://github.com/bitcoin/bips.git
synced 2026-06-29 17:39:57 +00:00
Fix other broken anchors
Used the following `sed` command and manually verified the unstaged changes. Special cases that were not committed included external links to Wikipedia which are case-sensitive, links specific lines in code, a link to a title with a slash that had to be cleaned up, and links to citations on the BIP repository that contain an underscore. ``` sed -E -i ' s/(\[\[[^][]*#)([^]|]*)(\||\]\])/\1\L\2\E\3/g :again s/(\[\[[^][]*#)([^]|]*)([: _]+)([^]|]*)(\||\]\])/\1\2-\4\5/g t again ' bip-0*mediawiki ```
This commit is contained in:
@@ -110,11 +110,11 @@ BIPs should be written in mediawiki or markdown format.
|
||||
|
||||
Each BIP should have the following parts:
|
||||
|
||||
* Preamble -- Headers containing metadata about the BIP ([[#BIP header preamble|see below]]).
|
||||
* Preamble -- Headers containing metadata about the BIP ([[#bip-header-preamble|see below]]).
|
||||
|
||||
* Abstract -- A short (~200 word) description of the technical issue being addressed.
|
||||
|
||||
* Copyright -- The BIP must be explicitly licensed under acceptable copyright terms ([[#BIP licensing|see below]]).
|
||||
* Copyright -- The BIP must be explicitly licensed under acceptable copyright terms ([[#bip-licensing|see below]]).
|
||||
|
||||
* Specification -- The technical specification should describe the syntax and semantics of any new feature. The specification should be detailed enough to allow competing, interoperable implementations for any of the current Bitcoin platforms.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user