Skip to content

Commit 525a594

Browse files
authored
Replace br elements with escapes
1 parent 7665651 commit 525a594

File tree

8 files changed

+84
-84
lines changed

8 files changed

+84
-84
lines changed

docs/atl/reference/iolecontrolimpl-class.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class IOleControlImpl
2121

2222
#### Parameters
2323

24-
*T*<br/>
24+
*T*\
2525
Your class, derived from `IOleControlImpl`.
2626

2727
## Members
@@ -115,6 +115,6 @@ See [IOleControl::OnMnemonic](/windows/win32/api/ocidl/nf-ocidl-iolecontrol-onmn
115115

116116
## See also
117117

118-
[IOleObjectImpl Class](../../atl/reference/ioleobjectimpl-class.md)<br/>
119-
[ActiveX Controls Interfaces](/windows/win32/com/activex-controls-interfaces)<br/>
118+
[IOleObjectImpl Class](../../atl/reference/ioleobjectimpl-class.md)\
119+
[ActiveX Controls Interfaces](/windows/win32/com/activex-controls-interfaces)\
120120
[Class Overview](../../atl/atl-class-overview.md)

docs/atl/reference/ipersiststorageimpl-class.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class ATL_NO_VTABLE IPersistStorageImpl : public IPersistStorage
2121

2222
#### Parameters
2323

24-
*T*<br/>
24+
*T*\
2525
Your class, derived from `IPersistStorageImpl`.
2626

2727
## Members
@@ -158,7 +158,7 @@ See [IPersistStorage::SaveCompleted](/windows/win32/api/objidl/nf-objidl-ipersis
158158

159159
## See also
160160

161-
[Storages and Streams](/windows/win32/Stg/storages-and-streams)<br/>
162-
[IPersistStreamInitImpl Class](../../atl/reference/ipersiststreaminitimpl-class.md)<br/>
163-
[IPersistPropertyBagImpl Class](../../atl/reference/ipersistpropertybagimpl-class.md)<br/>
161+
[Storages and Streams](/windows/win32/Stg/storages-and-streams)\
162+
[IPersistStreamInitImpl Class](../../atl/reference/ipersiststreaminitimpl-class.md)\
163+
[IPersistPropertyBagImpl Class](../../atl/reference/ipersistpropertybagimpl-class.md)\
164164
[Class Overview](../../atl/atl-class-overview.md)

docs/cloud/cloud-and-web-programming-in-visual-cpp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ In C++, you have several options for connecting to the web and the cloud.
5454

5555
## See also
5656

57-
[C++ in Visual Studio](../overview/visual-cpp-in-visual-studio.md) <br/>
58-
[Microsoft Azure C and C++ Developer Center](https://azure.microsoft.com/develop/cpp/) <br/>
57+
[C++ in Visual Studio](../overview/visual-cpp-in-visual-studio.md)\
58+
[Microsoft Azure C and C++ Developer Center](https://azure.microsoft.com/develop/cpp/)\
5959
[Networks and web services (UWP)](/windows/uwp/networking/)

docs/cpp/type-conversions-and-type-safety-modern-cpp.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ The C-style cast operator is identical to the call operator () and is therefore
172172

173173
## See also
174174

175-
[C++ type system](../cpp/cpp-type-system-modern-cpp.md)<br/>
176-
[Welcome back to C++](../cpp/welcome-back-to-cpp-modern-cpp.md)<br/>
177-
[C++ Language Reference](../cpp/cpp-language-reference.md)<br/>
175+
[C++ type system](../cpp/cpp-type-system-modern-cpp.md)\
176+
[Welcome back to C++](../cpp/welcome-back-to-cpp-modern-cpp.md)\
177+
[C++ Language Reference](../cpp/cpp-language-reference.md)\
178178
[C++ Standard Library](../standard-library/cpp-standard-library-reference.md)

docs/cppcx/collections-c-cx.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -94,27 +94,27 @@ Collections fall into four categories: modifiable versions and read-only version
9494
9595
Elements of a modifiable collection can be changed, but elements of a read-only collection, which is known as a *view*, can only be read. Elements of a [Platform::Collections::Vector](../cppcx/platform-collections-vector-class.md) or[Platform::Collections::VectorView](../cppcx/platform-collections-vectorview-class.md) collection can be accessed by using an iterator or the collection's [Vector::GetAt](../cppcx/platform-collections-vector-class.md#getat) and an index. Elements of an associative collection can be accessed by using the collection's [Map::Lookup](../cppcx/platform-collections-map-class.md#lookup) and a key.
9696
97-
[Platform::Collections::Map class](../cppcx/platform-collections-map-class.md)<br/>
97+
[Platform::Collections::Map class](../cppcx/platform-collections-map-class.md)\
9898
A modifiable, associative collection. Map elements are key-value pairs. Looking up a key to retrieve its associated value, and iterating through all key-value pairs, are both supported.
9999
100100
`Map` and `MapView` are templated on `<K, V, C = std::less<K>>`; therefore, you can customize the comparator. Additionally, `Vector` and `VectorView` are templated on `<T, E = std::equal_to<T>>` so that you can customize the behavior of `IndexOf()`. This is important mostly for `Vector` and `VectorView` of value structs. For example, to create a Vector\<Windows::Foundation::DateTime>, you must provide a custom comparator because DateTime does not overload the == operator.
101101
102-
[Platform::Collections::MapView class](../cppcx/platform-collections-mapview-class.md)<br/>
102+
[Platform::Collections::MapView class](../cppcx/platform-collections-mapview-class.md)\
103103
A read-only version of a `Map`.
104104
105-
[Platform::Collections::Vector class](../cppcx/platform-collections-vector-class.md)<br/>
105+
[Platform::Collections::Vector class](../cppcx/platform-collections-vector-class.md)\
106106
A modifiable sequence collection. `Vector<T>` supports constant-time random access and amortized-constant-time [Append](../cppcx/platform-collections-vector-class.md#append) operations.
107107
108-
[Platform::Collections::VectorView class](../cppcx/platform-collections-vectorview-class.md)<br/>
108+
[Platform::Collections::VectorView class](../cppcx/platform-collections-vectorview-class.md)\
109109
A read-only version of a `Vector`.
110110
111-
[Platform::Collections::InputIterator class](../cppcx/platform-collections-inputiterator-class.md)<br/>
111+
[Platform::Collections::InputIterator class](../cppcx/platform-collections-inputiterator-class.md)\
112112
An STL iterator that satisfies the requirements of an STL input iterator.
113113
114-
[Platform::Collections::VectorIterator class](../cppcx/platform-collections-vectoriterator-class.md)<br/>
114+
[Platform::Collections::VectorIterator class](../cppcx/platform-collections-vectoriterator-class.md)\
115115
An STL iterator that satisfies the requirements of an STL mutable random-access iterator.
116116
117-
[Platform::Collections::VectorViewIterator class](../cppcx/platform-collections-vectorviewiterator-class.md)<br/>
117+
[Platform::Collections::VectorViewIterator class](../cppcx/platform-collections-vectorviewiterator-class.md)\
118118
An STL iterator that satisfies the requirements of an STL **`const`** random-access iterator.
119119
120120
### begin() and end() functions

docs/data/oledb/crowset-class.md

Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class CRowset
1818
1919
### Parameters
2020
21-
*TAccessor*<br/>
21+
*TAccessor*\
2222
An accessor class. The default is `CAccessorBase`.
2323
2424
## Requirements
@@ -108,13 +108,13 @@ HRESULT Compare(const CBookmarkBase& bookmark1,
108108
109109
#### Parameters
110110
111-
*Bookmark1*<br/>
111+
*Bookmark1*\
112112
[in] The first bookmark to compare.
113113
114-
*Bookmark2*<br/>
114+
*Bookmark2*\
115115
[in] The second bookmark to compare.
116116
117-
*pComparison*<br/>
117+
*pComparison*\
118118
[out] A pointer to the result of the comparison.
119119
120120
### Return Value
@@ -141,7 +141,7 @@ CRowset(IRowset* pRowset);
141141

142142
#### Parameters
143143

144-
*pRowset*<br/>
144+
*pRowset*\
145145
[in] A pointer to an `IRowset` interface to be associated with this class.
146146

147147
## <a name="delete"></a> CRowset::Delete
@@ -177,28 +177,28 @@ HRESULT FindNextRow(DBCOMPAREOP op,
177177
178178
#### Parameters
179179
180-
*op*<br/>
180+
*op*\
181181
[in] The operation to use in comparing row values. For values, see [IRowsetFind::FindNextRow](/previous-versions/windows/desktop/ms723091(v=vs.85)).
182182
183-
*pData*<br/>
183+
*pData*\
184184
[in] A pointer to the value to be matched.
185185
186-
*wType*<br/>
186+
*wType*\
187187
[in] Indicates the data type of the value part of the buffer. For information about type indicators, see [Data Types](/previous-versions/windows/desktop/ms723969(v=vs.85)) in the *OLE DB Programmer's Reference* in the Windows SDK.
188188
189-
*nLength*<br/>
189+
*nLength*\
190190
[in] The length, in bytes, of the consumer data structure allocated for the data value. For details, see the description of `cbMaxLen` in [DBBINDING Structures](/previous-versions/windows/desktop/ms716845(v=vs.85)) in the *OLE DB Programmer's Reference.*
191191
192-
*bPrecision*<br/>
192+
*bPrecision*\
193193
[in] The maximum precision used when getting data. Used only if *wType* is DBTYPE_NUMERIC. For more information, see [Conversions involving DBTYPE_NUMERIC or DBTYPE_DECIMAL](/previous-versions/windows/desktop/ms719714(v=vs.85)) in the *OLE DB Programmer's Reference*.
194194
195-
*bScale*<br/>
195+
*bScale*\
196196
[in] The scale used when getting data. Used only if *wType* is DBTYPE_NUMERIC or DBTYPE_DECIMAL. For more information, see [Conversions involving DBTYPE_NUMERIC or DBTYPE_DECIMAL](/previous-versions/windows/desktop/ms719714(v=vs.85)) in the *OLE DB Programmer's Reference*.
197197
198-
*bSkipCurrent*<br/>
198+
*bSkipCurrent*\
199199
[in] The number of rows from the bookmark at which to start a search.
200200
201-
*pBookmark*<br/>
201+
*pBookmark*\
202202
[in] The bookmark for position at which to start a search.
203203
204204
### Return Value
@@ -225,13 +225,13 @@ HRESULT GetApproximatePosition(const CBookmarkBase* pBookmark,
225225

226226
#### Parameters
227227

228-
*pBookmark*<br/>
228+
*pBookmark*\
229229
[in] A pointer to a bookmark that identifies the row whose position is to be found. NULL if only the row count is required.
230230

231-
*pPosition*<br/>
231+
*pPosition*\
232232
[out] A pointer to the location where `GetApproximatePosition` returns the position of the row. NULL if the position is not required.
233233

234-
*pcRows*<br/>
234+
*pcRows*\
235235
[out] A pointer to the location where `GetApproximatePosition` returns the total number of rows. NULL if the row count is not required.
236236

237237
### Return Value
@@ -258,7 +258,7 @@ HRESULT GetData(int nAccessor) throw();
258258
259259
#### Parameters
260260
261-
*nAccessor*<br/>
261+
*nAccessor*\
262262
[in] The (zero-offset) index number of the accessor to use for accessing the data.
263263
264264
### Return Value
@@ -282,10 +282,10 @@ HRESULT GetDataHere(int nAccessor,
282282

283283
#### Parameters
284284

285-
*nAccessor*<br/>
285+
*nAccessor*\
286286
[in] The index number of the accessor to use for accessing the data.
287287

288-
*pBuffer*<br/>
288+
*pBuffer*\
289289
[out] A buffer into which to place the data for the current record.
290290

291291
### Return Value
@@ -328,7 +328,7 @@ HRESULT GetRowStatus(DBPENDINGSTATUS* pStatus) const throw();
328328
329329
#### Parameters
330330
331-
*pStatus*<br/>
331+
*pStatus*\
332332
[out] A pointer to a location where `GetRowStatus` returns the status value. See DBPENDINGSTATUS in the OLE DB Programmer's Reference.
333333
334334
### Return Value
@@ -352,10 +352,10 @@ HRESULT Insert(int nAccessor = 0,
352352

353353
#### Parameters
354354

355-
*nAccessor*<br/>
355+
*nAccessor*\
356356
[in] The number of the accessor to use for inserting the data.
357357

358-
*bGetHRow*<br/>
358+
*bGetHRow*\
359359
[in] Indicates whether the handle for the inserted row is retrieved.
360360

361361
### Return Value
@@ -388,7 +388,7 @@ HRESULT IsSameRow(HROW hRow) const throw();
388388
389389
#### Parameters
390390
391-
*hRow*<br/>
391+
*hRow*\
392392
[in] A handle to the row to compare to the current row.
393393
394394
### Return Value
@@ -448,10 +448,10 @@ HRESULT MoveNext(LONG lSkip,
448448
449449
#### Parameters
450450
451-
*lSkip*<br/>
451+
*lSkip*\
452452
[in] The number of rows to skip before fetching.
453453
454-
*bForward*<br/>
454+
*bForward*\
455455
[in] Pass **`true`** to move forward to the next record, **`false`** to move backward.
456456
457457
### Return Value
@@ -501,10 +501,10 @@ HRESULT MoveToBookmark(const CBookmarkBase& bookmark,
501501
502502
#### Parameters
503503
504-
*bookmark*<br/>
504+
*bookmark*\
505505
[in] A bookmark marking the location from which you want to fetch data.
506506
507-
*lSkip*<br/>
507+
*lSkip*\
508508
[in] The number count of rows from the bookmark to the target row. If *lSkip* is zero, the first row fetched is the bookmarked row. If *lSkip* is 1, the first row fetched is the row after the bookmarked row. If *lSkip* is -1, the first row fetched is the row before the bookmarked row.
509509
510510
### Return Value
@@ -530,13 +530,13 @@ HRESULT MoveToRatio(DBCOUNTITEM nNumerator,
530530

531531
#### Parameters
532532

533-
*nNumerator*<br/>
533+
*nNumerator*\
534534
[in] The numerator used to determine the fractional positional from which to fetch data.
535535

536-
*nDenominator*<br/>
536+
*nDenominator*\
537537
[in] The denominator used to determine the fractional positional from which to fetch data.
538538

539-
*bForward*<br/>
539+
*bForward*\
540540
[in] Indicates whether to move forward or backward. The default is forward.
541541

542542
### Return Value
@@ -581,7 +581,7 @@ HRESULT SetData(int nAccessor) const throw();
581581
582582
#### Parameters
583583
584-
*nAccessor*<br/>
584+
*nAccessor*\
585585
[in] The number of the accessor to use for accessing the data.
586586
587587
### Return Value
@@ -610,13 +610,13 @@ HRESULT Undo(DBCOUNTITEM* pcRows = NULL,
610610

611611
#### Parameters
612612

613-
*pcRows*<br/>
613+
*pcRows*\
614614
[out] A pointer to the location where `Undo` returns the number of rows it attempted to undo if required.
615615

616-
*phRow*<br/>
616+
*phRow*\
617617
[out] A pointer to the location where `Undo` returns an array of handles to all rows it attempted to undo if required.
618618

619-
*pStatus*<br/>
619+
*pStatus*\
620620
[out] A pointer to the location where `Undo` returns the row status value. No status is returned if *pStatus* is null.
621621

622622
### Return Value
@@ -641,13 +641,13 @@ HRESULT Update(DBCOUNTITEM* pcRows = NULL,
641641
642642
#### Parameters
643643
644-
*pcRows*<br/>
644+
*pcRows*\
645645
[out] A pointer to the location where `Update` returns the number of rows it attempted to update, if required.
646646
647-
*phRow*<br/>
647+
*phRow*\
648648
[out] A pointer to the location where `Update` returns the handle of the row it attempted to update. No handle is returned if *phRow* is null.
649649
650-
*pStatus*<br/>
650+
*pStatus*\
651651
[out] A pointer to the location where `Update` returns the row status value. No status is returned if *pStatus* is null.
652652
653653
### Return Value
@@ -674,13 +674,13 @@ HRESULT UpdateAll(DBCOUNTITEM* pcRows = NULL,
674674

675675
#### Parameters
676676

677-
*pcRows*<br/>
677+
*pcRows*\
678678
[out] A pointer to the location where `UpdateAll` returns the number of rows it attempted to update, if required.
679679

680-
*pphRow*<br/>
680+
*pphRow*\
681681
[out] A pointer to memory in which `UpdateAll` returns the handle of the row it attempted to update. No handle is returned if *pphRow* is null.
682682

683-
*ppStatus*<br/>
683+
*ppStatus*\
684684
[out] A pointer to the location where `Update` returns the row status value. No status is returned if *ppStatus* is null.
685685

686686
### Remarks
@@ -697,8 +697,8 @@ A standard HRESULT.
697697

698698
## See also
699699

700-
[DBViewer Sample](../../overview/visual-cpp-samples.md)<br/>
701-
[MultiRead Sample](../../overview/visual-cpp-samples.md)<br/>
702-
[MultiRead Attributes Sample](../../overview/visual-cpp-samples.md)<br/>
703-
[OLE DB Consumer Templates](../../data/oledb/ole-db-consumer-templates-cpp.md)<br/>
700+
[DBViewer Sample](../../overview/visual-cpp-samples.md)\
701+
[MultiRead Sample](../../overview/visual-cpp-samples.md)\
702+
[MultiRead Attributes Sample](../../overview/visual-cpp-samples.md)\
703+
[OLE DB Consumer Templates](../../data/oledb/ole-db-consumer-templates-cpp.md)\
704704
[OLE DB Consumer Templates Reference](../../data/oledb/ole-db-consumer-templates-reference.md)

docs/extensions/string-cpp-component-extensions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,6 @@ System.String
253253

254254
## See also
255255

256-
[Component Extensions for .NET and UWP](component-extensions-for-runtime-platforms.md)<br/>
257-
[String and Character Literals](../cpp/string-and-character-literals-cpp.md)<br/>
256+
[Component Extensions for .NET and UWP](component-extensions-for-runtime-platforms.md)\
257+
[String and Character Literals](../cpp/string-and-character-literals-cpp.md)\
258258
[/clr (Common Language Runtime Compilation)](../build/reference/clr-common-language-runtime-compilation.md)

0 commit comments

Comments
 (0)