Skip to content

Commit 68af55c

Browse files
author
Andrew Pardoe
committed
Removing the rest of the unnecessary escapes
1 parent c70b0ac commit 68af55c

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

CppCoreGuidelines.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -15724,44 +15724,44 @@ Alternatively, we will decide that no change is needed and delete the entry.
1572415724
# Bibliography
1572515725

1572615726
* <a name="Alexandrescu01"></a>
15727-
\[Alexandrescu01\]: A. Alexandrescu. Modern C++ Design (Addison-Wesley, 2001).
15727+
[Alexandrescu01]: A. Alexandrescu. Modern C++ Design (Addison-Wesley, 2001).
1572815728
* <a name="Cplusplus03"></a>
15729-
\[C++03\]: ISO/IEC 14882:2003(E), Programming Languages — C++ (updated ISO and ANSI C++ Standard including the contents of (C++98) plus errata corrections).
15729+
[C++03]: ISO/IEC 14882:2003(E), Programming Languages — C++ (updated ISO and ANSI C++ Standard including the contents of (C++98) plus errata corrections).
1573015730
* <a name="CplusplusCS"></a>
15731-
\[C++CS\]:
15731+
[C++CS]:
1573215732
* <a name="Cargill92"></a>
15733-
\[Cargill92\]: T. Cargill. C++ Programming Style (Addison-Wesley, 1992).
15733+
[Cargill92]: T. Cargill. C++ Programming Style (Addison-Wesley, 1992).
1573415734
* <a name="Cline99"></a>
15735-
\[Cline99\]: M. Cline, G. Lomow, and M. Girou. C++ FAQs (2ndEdition) (Addison-Wesley, 1999).
15735+
[Cline99]: M. Cline, G. Lomow, and M. Girou. C++ FAQs (2ndEdition) (Addison-Wesley, 1999).
1573615736
* <a name="Dewhurst03"></a>
15737-
\[Dewhurst03\]: S. Dewhurst. C++ Gotchas (Addison-Wesley, 2003).
15737+
[Dewhurst03]: S. Dewhurst. C++ Gotchas (Addison-Wesley, 2003).
1573815738
* <a name="Henricson97"></a>
15739-
\[Henricson97\]: M. Henricson and E. Nyquist. Industrial Strength C++ (Prentice Hall, 1997).
15739+
[Henricson97]: M. Henricson and E. Nyquist. Industrial Strength C++ (Prentice Hall, 1997).
1574015740
* <a name="Koenig97"></a>
15741-
\[Koenig97\]: A. Koenig and B. Moo. Ruminations on C++ (Addison-Wesley, 1997).
15741+
[Koenig97]: A. Koenig and B. Moo. Ruminations on C++ (Addison-Wesley, 1997).
1574215742
* <a name="Lakos96"></a>
15743-
\[Lakos96\]: J. Lakos. Large-Scale C++ Software Design (Addison-Wesley, 1996).
15743+
[Lakos96]: J. Lakos. Large-Scale C++ Software Design (Addison-Wesley, 1996).
1574415744
* <a name="Meyers96"></a>
15745-
\[Meyers96\]: S. Meyers. More Effective C++ (Addison-Wesley, 1996).
15745+
[Meyers96]: S. Meyers. More Effective C++ (Addison-Wesley, 1996).
1574615746
* <a name="Meyers97"></a>
15747-
\[Meyers97\]: S. Meyers. Effective C++ (2nd Edition) (Addison-Wesley, 1997).
15747+
[Meyers97]: S. Meyers. Effective C++ (2nd Edition) (Addison-Wesley, 1997).
1574815748
* <a name="Meyers15"></a>
15749-
\[Meyers15\]: S. Meyers. Effective Modern C++ (O'Reilly, 2015).
15749+
[Meyers15]: S. Meyers. Effective Modern C++ (O'Reilly, 2015).
1575015750
* <a name="Murray93"></a>
15751-
\[Murray93\]: R. Murray. C++ Strategies and Tactics (Addison-Wesley, 1993).
15751+
[Murray93]: R. Murray. C++ Strategies and Tactics (Addison-Wesley, 1993).
1575215752
* <a name="Stroustrup00"></a>
15753-
\[Stroustrup00\]: B. Stroustrup. The C++ Programming Language (Special 3rdEdition) (Addison-Wesley, 2000).
15753+
[Stroustrup00]: B. Stroustrup. The C++ Programming Language (Special 3rdEdition) (Addison-Wesley, 2000).
1575415754
* <a name="Stroustrup05"></a>
15755-
\[Stroustrup05\]: B. Stroustrup. [A rationale for semantically enhanced library languages](http://www.stroustrup.com/SELLrationale.pdf).
15755+
[Stroustrup05]: B. Stroustrup. [A rationale for semantically enhanced library languages](http://www.stroustrup.com/SELLrationale.pdf).
1575615756
* <a name="Stroustrup13"></a>
15757-
\[Stroustrup13\]: B. Stroustrup. [The C++ Programming Language (4th Edition)](http://www.stroustrup.com/4th.html). Addison Wesley 2013.
15757+
[Stroustrup13]: B. Stroustrup. [The C++ Programming Language (4th Edition)](http://www.stroustrup.com/4th.html). Addison Wesley 2013.
1575815758
* <a name="Stroustrup14"></a>
15759-
\[Stroustrup14\]: B. Stroustrup. [A Tour of C++](http://www.stroustrup.com/Tour.html).
15759+
[Stroustrup14]: B. Stroustrup. [A Tour of C++](http://www.stroustrup.com/Tour.html).
1576015760
Addison Wesley 2014.
1576115761
* <a name="SuttHysl04b"></a>
15762-
\[SuttHysl04b\]: H. Sutter and J. Hyslop. "Collecting Shared Objects" (C/C++ Users Journal, 22(8), August 2004).
15762+
[SuttHysl04b]: H. Sutter and J. Hyslop. "Collecting Shared Objects" (C/C++ Users Journal, 22(8), August 2004).
1576315763
* <a name="SuttAlex05"></a>
15764-
\[SuttAlex05\]: H. Sutter and A. Alexandrescu. C++ Coding Standards. Addison-Wesley 2005.
15764+
[SuttAlex05]: H. Sutter and A. Alexandrescu. C++ Coding Standards. Addison-Wesley 2005.
1576515765
* <a name="Sutter00"></a>
1576615766
[Sutter00]: H. Sutter. Exceptional C++ (Addison-Wesley, 2000).
1576715767
* <a name="Sutter02"></a>

0 commit comments

Comments
 (0)