Skip to content

Commit 374f9a1

Browse files
authored
Add bunch of backticks in "iostreams Conventions" topic
1 parent dda89e0 commit 374f9a1

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

docs/standard-library/iostreams-conventions.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,25 @@ ms.assetid: 9fe5ded0-37a1-48d1-9671-c81ffc4760ad
99

1010
The iostreams headers support conversions between text and encoded forms, and input and output to external files:
1111

12-
[\<fstream>](../standard-library/fstream.md)\
13-
[\<iomanip>](../standard-library/iomanip.md)\
14-
[\<ios>](../standard-library/ios.md)\
15-
[\<iosfwd>](../standard-library/iosfwd.md)\
16-
[\<iostream>](../standard-library/iostream.md)\
17-
[\<istream>](../standard-library/istream.md)\
18-
[\<ostream>](../standard-library/ostream.md)\
19-
[\<sstream>](../standard-library/sstream.md)\
20-
[\<streambuf>](../standard-library/streambuf.md)\
21-
[\<strstream>](../standard-library/strstream.md)
12+
[`<fstream>`](../standard-library/fstream.md)\
13+
[`<iomanip>`](../standard-library/iomanip.md)\
14+
[`<ios>`](../standard-library/ios.md)\
15+
[`<iosfwd>`](../standard-library/iosfwd.md)\
16+
[`<iostream>`](../standard-library/iostream.md)\
17+
[`<istream>`](../standard-library/istream.md)\
18+
[`<ostream>`](../standard-library/ostream.md)\
19+
[`<sstream>`](../standard-library/sstream.md)\
20+
[`<streambuf>`](../standard-library/streambuf.md)\
21+
[`<strstream>`](../standard-library/strstream.md)
2222

23-
The simplest use of iostreams requires only that you include the header [\<iostream>](../standard-library/iostream.md). You can then extract values from [cin](../standard-library/iostream.md#cin) or [wcin](../standard-library/iostream.md#wcin) to read the standard input. The rules for doing so are outlined in the description of the class [basic_istream Class](../standard-library/basic-istream-class.md). You can also insert values to [cout](../standard-library/iostream.md#cout) or [wcout](../standard-library/iostream.md#wcout) to write the standard output. The rules for doing so are outlined in the description of the class [basic_ostream Class](../standard-library/basic-ostream-class.md). Format control common to both extractors and insertors is managed by the class [basic_ios Class](../standard-library/basic-ios-class.md). Manipulating this format information in the guise of extracting and inserting objects is the province of several manipulators.
23+
The simplest use of iostreams requires only that you include the header [`<iostream>`](../standard-library/iostream.md). You can then extract values from [`cin`](../standard-library/iostream.md#cin) or [`wcin`](../standard-library/iostream.md#wcin) to read the standard input. The rules for doing so are outlined in the description of the class [`basic_istream` Class](../standard-library/basic-istream-class.md). You can also insert values to [`cout`](../standard-library/iostream.md#cout) or [`wcout`](../standard-library/iostream.md#wcout) to write the standard output. The rules for doing so are outlined in the description of the class [`basic_ostream` Class](../standard-library/basic-ostream-class.md). Format control common to both extractors and insertors is managed by the class [`basic_ios` Class](../standard-library/basic-ios-class.md). Manipulating this format information in the guise of extracting and inserting objects is the province of several manipulators.
2424

25-
You can perform the same iostreams operations on files that you open by name, using the classes declared in [\<fstream>](../standard-library/fstream.md). To convert between iostreams and objects of class [basic_string Class](../standard-library/basic-string-class.md), use the classes declared in [\<sstream>](../standard-library/sstream.md). To do the same with C strings, use the classes declared in [\<strstream>](../standard-library/strstream.md).
25+
You can perform the same iostreams operations on files that you open by name, using the classes declared in [`<fstream>`](../standard-library/fstream.md). To convert between iostreams and objects of class [`basic_string` Class](../standard-library/basic-string-class.md), use the classes declared in [`<sstream>`](../standard-library/sstream.md). To do the same with C strings, use the classes declared in [`<strstream>`](../standard-library/strstream.md).
2626

2727
The remaining headers provide support services, typically of direct interest to only the most advanced users of the iostreams classes.
2828

2929
## See also
3030

3131
[C++ Standard Library Overview](../standard-library/cpp-standard-library-overview.md)\
32-
[iostream Programming](../standard-library/iostream-programming.md)\
32+
[`iostream` Programming](../standard-library/iostream-programming.md)\
3333
[Thread Safety in the C++ Standard Library](../standard-library/thread-safety-in-the-cpp-standard-library.md)

0 commit comments

Comments
 (0)