-
Notifications
You must be signed in to change notification settings - Fork 1
/
doc.html
786 lines (768 loc) · 40.8 KB
/
doc.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
---
title: Documentation Template
description: This is a template to demonstrate various CSS classes used in our documentation and provide sample code for them.
parent: Parent section
layout: staging
---
<h1>{{ page.title }}</h1>
<article class="bcls-article">
<summary>{{ page.description }}</summary>
<section class="bcls-section">
<h2 id="Basic_page_structure">Basic page structure</h2>
<p>Here is the code for the basic document structure:</p>
<pre class="line-numbers"><code class="language-html" translate="No">---
title:
description:
parent:
---
<h1>{{ page.title }}</h1>
<article class="bcls-article">
<summary>{{ page.description }}</summary>
<section class="bcls-section">
<h2 id=""></h2>
<p></p>
</section>
</article></code></pre>
<p>Dash snippet: <code translate="No">docstart</code></p>
<p>And here is how it works:</p>
<figure class="bcls-figure">
<img class="bcls-image" src="/assets/images/doc-template/basic-doc-structure.png" alt="Basic Doc Structure">
<figcaption class="bcls-caption--image">Basic Doc Structure</figcaption>
</figure>
<p>The <code translate="No">id</code> on the <code translate="No">h2</code> tag is <strong>important</strong> because it is used to build the Page Contents menu:</p>
<figure class="bcls-figure">
<img class="bcls-image" src="/assets/images/doc-template/page-contents.png" alt="Page Contents Menu">
<figcaption class="bcls-caption--image">Page Contents Menu</figcaption>
</figure>
</section>
<section class="bcls-section">
<h2 id="images">Images</h2>
<h3>Images set off on their own</h3>
<p>You can set off images on their own with a border added or no border.</p>
<figure class="bcls-figure">
<img class="bcls-image" src="/assets/images/doc-template/page-contents.png" alt="Page Contents Menu">
<figcaption class="bcls-caption--image">Page Contents Menu</figcaption>
</figure>
<pre class="line-numbers"><code class="language-html" translate="No"><figure class="bcls-figure">
<img class="bcls-image" src="/assets/images/doc-template/page-contents.png" alt="Basic Doc Structure">
<figcaption class="bcls-caption--image">Basic Doc Structure</figcaption>
</figure></code></pre>
<p>Dash snippet: <code translate="No">bcimg</code></p>
<h3>Image without border</h3>
<figure class="bcls-figure">
<img class="bcls-image--no-border" src="/assets/images/doc-template/page-contents.png" alt="Page Contents Menu">
<figcaption class="bcls-caption--image">Page Contents Menu</figcaption>
</figure>
<p>If you wanted an image with no border, use this instead:</p>
<pre><code class="language-html" translate="No"><figure class="bcls-figure">
<img class="bcls-image--no-border" src="" alt="description">
<figcaption class="bcls-caption--image">description</figcaption>
</figure></code></pre>
<p>Dash snippet: <code translate="No">imgnoborder</code></p>
<p>For inline images, just use an <code translate="No"><img></code> tag without the figure and caption tags. No special classes for inline images.</p>
<p>Image formats</p>
<ul>
<li>For screenshots, use .png or .jpg (png preferred)</li>
<li>For diagrams use .svg if at all possible (svg resizes better than other formats). Many image editors like Lucidchart allow you to export the image as svg</li>
</ul>
</section>
<section class="bcls-section">
<h2 id="Task_lists">Task lists</h2>
<p>We use some special lists for different purposes.</p>
<h3>Task list that resumes numbering when you restart it</h3>
<ol class="bcls-tasklist">
<li>Step 1</li>
<li>Step 2</li>
<li>
Step 3: code for the list:
<pre class="line-numbers"><code class="language-html" translate="No"><ol class="bcls-tasklist">
<li></li>
</ol></code></pre>
</li>
<li>Step 4: Dash snippet: <code translate="No">bctasklist</code></li>
</ol>
<h4>Subheading</h4>
<p>Some content you want to add before restarting the steps.</p>
<ol class="bcls-tasklist">
<li>Step 5</li>
<li>Step 6</li>
</ol>
<h3>Task list with numbers starting at 1</h3>
<ol class="bcls-tasklist-restart">
<li>Here is step 1 of the task.</li>
<li>Step 2 of the task.</li>
<li>
Code to create this list:
<pre class="line-numbers"><code class="language-html" translate="No"><ol class="bcls-tasklist-restart">
<li></li>
</ol></code></pre>
</li>
</ol>
<p>Dash snippet: <code translate="No">bcnewlist</code></p>
</section>
<section class="bcls-section">
<h2 id="Tables">Tables</h2>
<p>We have special styles for tables. Here is the basic code to create one:</p>
<pre class="line-numbers"><code class="language-html" translate="No"><div style="overflow-x: scroll;">
<table class="bcls-table">
<caption class="bcls-caption--table">description</caption>
<thead class="bcls-table__head">
<tr>
<th>Table Header</th>
<th>Table Header</th>
</tr>
</thead>
<tbody class="bcls-table__body">
<tr>
<td>Table cell</td>
<td>Table cell</td>
</tr>
</tbody>
</table>
</div></code></pre>
<p>Dash snippet: <code translate="No">bctable</code></p>
<p>And below is a sample table:</p>
<div style="overflow-x: scroll;">
<table class="bcls-table">
<caption class="bcls-caption--table">Sample Table</caption>
<thead class="bcls-table__head">
<tr>
<th>Column header</th>
<th>Column header</th>
</tr>
</thead>
<tbody class="bcls-table__body">
<tr>
<td>Table cell</td>
<td>Table cell</td>
</tr>
</tbody>
</table>
</div>
</section>
<section class="bcls-section">
<h2 id="Notes_for_information_tips_and_warnings">Notes for information, tips, and warnings</h2>
<p>We have special notes styles to highlight important information, tips that might help customers, or warnings about things might go wrong.</p>
<aside class="bcls-aside bcls-aside--information language-editable">
This is an <strong>information</strong> note. You can use any HTML you want in here.
<pre class="line-numbers"><code class="language-html" translate="no"><aside class="bcls-aside bcls-aside--information language-editable"></aside></code></pre>
</aside>
<p>Dash snippet: <code translate="No">bclsinfo</code></p>
<aside class="bcls-aside bcls-aside--tip language-editable">
This is a <strong>tip</strong> note. You can use any HTML you want in here.
<pre class="line-numbers"><code class="language-html" translate="No"><aside class="bcls-aside bcls-aside--tip language-editable"></aside></code></pre>
</aside>
<p>Dash snippet: <code translate="No">bctip</code></p>
<aside class="bcls-aside bcls-aside--warning language-editable">
This is a <strong>warning</strong> note. You can use any HTML you want in here.
<pre class="line-numbers"><code class="language-html" translate="No"><aside class="bcls-aside bcls-aside--warning language-editable"></aside></code></pre>
</aside>
<p>Dash snippet: <code translate="No">bcwarning</code></p>
</section>
<section class="bcls-section">
<h2 id="embedding_videos">Embedding videos</h2>
<h3>Training videos</h3>
<p>For training videos, we use an <a href="https://gallery.support.brightcove.com/experiences/inpage/index.html">in-page experience</a>. The code looks like this:</p>
<pre class="line-numbers"><code class="language-html"><div class="training-video-player-ipx" data-experience="5a73630f7afd7a00101bc1b5" data-video-ids="<span class="bcls-highlight">4878165648001</span>">&nbsp;</div></span>
<script src="https://players.brightcove.net/20318290001/experience_5a73630f7afd7a00101bc1b5/live.js"></script>
</code></pre>
<p>Note that the video id (highlighted above) is the only thing that changes.</p>
<h3>Sample videos/players</h3>
<p>For samples, it will depend on what the sample is demonstrating. Where possible, use the <strong>basic</strong> (iframe) embed code, but if you need to add custom CSS or JavaScript, you will need to use the <strong>advanced</strong> (in-page) embed code. In either case, be sure to use the <strong>responsive</strong> version of the code.</p>
<h3>Short animated-gif style videos</h3>
<p>Matt created a special player for these in the In-App Help account.</p>
<p>These also need to be responsive, and making them so is a little more complicated, because the responsive code the Brightcove Player uses assumes a 16:9 aspect ratio, and these videos are usually odd sizes (as we try to make them as small as possible). Here's sample code to show you what needs to be done:</p>
<pre class="line-numbers"><code class="language-html"><div style="position: relative; display: block; max-width: 960px;">
<div style="<span class="bcls-highlight">padding-top: 43.64%;</span>">
<iframe src="https://players.brightcove.net/6225316964001/Qznf2bKtV_default/index.html?videoId=6267506952001" allowfullscreen="" allow="encrypted-media" style="position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; width: 100%; height: 100%;"></iframe>
</div>
</div></code></pre>
<p>The key to responsive video is the <code translate="no">padding-top</code> value in the second <code translate="no">div</code> tag (highlighted above). The value needs to be the actual height of the video divided by the actual width, expressed as a percentage:</p>
<figure class="bcls-figure">
<img class="bcls-image" src="/assets/images/doc-template/responsive-sizing.png" alt="Calculating Padding-Top">
<figcaption class="bcls-caption--image">Calculating Padding-Top</figcaption>
</figure>
</section>
<section class="bcls-section">
<h2 id="Simulate_UI_buttons">Simulate UI buttons</h2>
<p>To help users identify buttons in Studio that you are referring to, we've create classes to simulate the buttons in documentation. Examples with the code are below.</p>
<dl>
<dt><span class="button-blue">Add New</span></dt>
<dd><code translate="No"><span class="button-blue">Add New</span></code></dd>
<dt><span class="button-blue-text">Add New</span></dt>
<dd><code translate="No"><span class="button-blue-text">Add New</span></code></dd>
<dt><span class="button-blue-text-bordered">Add New</span></dt>
<dd><code translate="No"><span class="button-blue-text-bordered">Add New</span></code></dd>
<dt><span class="button-red">Add New</span></dt>
<dd><code translate="No"><span class="button-red">Add New</span></code></dd>
<dt><span class="button-red-text">Add New</span></dt>
<dd><code translate="No"><span class="button-red-text">Add New</span></code></dd>
<dt><span class="button-red-text-border">Add New</span></dt>
<dd><code translate="No"><span class="button-red-text-border">Add New</span></code></dd>
<dt><span class="button-gray">Add New</span></dt>
<dd><code translate="No"><span class="button-gray">Add New</span></code></dd>
<dt><span class="button-blue-text-bordered"><i data-feather="edit-3"></i> Edit</span></dt>
<dd><code translate="No"><span class="button-blue-text-bordered"> <i data-feather="edit-3"></i> Edit</span></code></dd>
</dl>
</section>
<section class="bcls-section">
<h2 id="Code_and_localization">Code and localization</h2>
<p>The AWS machine translator we use to localize our sites translates code as if it were ordinary text, which is always wrong! To stop this, I got Amazon to add handling for a special <code translate="No">translate="no"</code> attribute that stops the content of the tag from being translated. you can use that attribute on any tag, but it's especially important to use it when you are including sample code.</p>
<h3>Inline code</h3>
<p>For inline code, just use <strong><code translate="No">some same code</code></strong> (Dash snippet: <code translate="No">codent</code>)</p>
<h3>Code blocks</h3>
<p>For code blocks, we use a library that adds line numbering and syntax highlighting for the code, based on special classes.</p>
<h4>HTML</h4>
<p>For an HTML block: <code translate="no"><pre class="line-numbers"><code class="language-html" translate="No"></code></pre></code> (Dash snippet: <code translate="No">pchtml</code>)</p>
<h5>Example</h5>
<pre class="line-numbers"><code class="language-html" translate="No"><section class="bcls-section">
<h2 id=""></h2>
<p></p>
</section></code></pre>
<h4>CSS</h4>
<p>For a CSS block: <code translate="no"><pre class="line-numbers"><code class="language-css" translate="No"></code></pre></code> (Dash snippet: <code translate="No">pccss</code>)</p>
<h5>Example</h5>
<pre class="line-numbers"><code class="language-css" translate="No">.bcls-tasklist-restart {
list-style-type: none;
margin-left: 0;
counter-reset: rstep calc(var(--s) - 1);
}</code></pre>
<h4>JavaScript</h4>
<p>For a CSS block: <code translate="no"><pre class="line-numbers"><code class="language-javascript" translate="No"></code></pre></code> (Dash snippet: <code translate="No">pcjs</code>)</p>
<h5>Example</h5>
<pre class="line-numbers"><code class="language-javascript" translate="No">var cookiesArray = document.cookie.split(";"), cookiesObj = {}, i, tmpArray = [];
for (i = 0; i < cookiesArray.length; i++) {
tmpArray = cookiesArray[i].split("=");
if (tmpArray[0].indexOf('BC_TOKEN') > -1) {
cookiesObj.BC_TOKEN = tmpArray[1];
}
}
window.prompt("BC_TOKEN:", cookiesObj.BC_TOKEN);</code></pre>
<p>Several other languages are supported, including json (Dash snippet: <code translate="No">pcljson</code>), swift, objective-c, and java (Dash snippet: <code translate="No">pcjava</code>). See <a href="https://prismjs.com/#supported-languages">this page</a> for all languages Prism supports. Our implementation doesn't support all the languages, but if you need to add one that isn't supported, ask Robert.</p>
<p>If you don't want line numbers for a short snippet, just remove the <code translate="no">class="line-numbers"</code> from the <code translate="no">pre</code> tag.</p>
<h3>Highlighting and marking user input</h3>
<p>Sometimes it's useful to highlight an important part of code, or an item that the user needs to replace with their own information.</p>
<p>To highlight some code, use <span class="bcls-highlight"><code translate="No"><span class="bcls-highlight">(some code here)</span></code></span> (Dash snippet: select the code that you want to highlight, and then type <code translate="No">bchighlight</code>)</p>
<p>To mark some code that the user needs to modify, use <span class="bcls-input"><code translate="No"><span class="bcls-input">{your_access_token}</span></code></span> (Dash snippet: select the code that you want to apply this to, and then type <code translate="No">bcinput</code>)</p>
</section>
<section class="bcls-section">
<h2 id="collapsable_sections">Collapsable sections</h2>
We sometimes use collapsable sections for bits of information that are included on a lot of different pages (for example, how to create client credentials for an API), and also for some long code blocks that many users may not be interested in seeing (like a sample response to an API request).
<p>Here's an example:</p>
<details>
<summary>This part appears in the page</summary>
<p>What's in this part can contain any HTML and is hidden until the user clicks on the visible part.</p>
</details>
<h3>The code</h3>
<pre class="line-numbers"><code class="language-html" translate="no"><details>
<summary>This part appears in the page</summary>
<p>What's in this part can contain any HTML and is hidden until the user clicks on the visible part.</p>
</details></code></pre>
</section>
<section class="bcls-section">
<h2 id="faq">FAQ</h2>
<h3>Sample</h3>
<details>
<summary>Is this the question?</summary>
Yes, and this is the answer.
</details>
<details>
<summary>What HTML can you put in the answer?</summary>
<p>Anything you like!</p>
<figure class="bcls-figure">
<img class="bcls-image" src="/test-assets/images/lunar-eclipse.png" alt="Sample Image">
<figcaption class="bcls-caption--image">Sample Image</figcaption>
</figure>
<h4>List</h4>
<ul>
<li>item 1</li>
<li>item 2</li>
</ul>
</details>
<h3>Code</h3>
<pre class="line-numbers"><code class="language-html" translate="No"><details>
<summary>Is this the question?</summary>
Yes, and this is the answer.
</details>
<details>
<summary>What HTML can you put in the answer?</summary>
<p>Anything you like!</p>
<figure class="bcls-figure">
<img class="bcls-image" src="/test-assets/images/lunar-eclipse.png" alt="Sample Image">
<figcaption class="bcls-caption--image">Sample Image</figcaption>
</figure>
<h4>List</h4>
<ul>
<li>item 1</li>
<li>item 2</li>
</ul>
</details></code></pre>
</section>
<section class="bcls-section">
<h2 id="Button">Button</h2>
<h3>Sample</h3>
<p><button class="bcls-button">BCLS Button</button></p>
<h3>Code</h3>
<pre class="line-numbers"><code class="language-html" translate="No"><button class="bcls-button">BCLS Button</button></code></pre>
</section>
<section class="bcls-section">
<h2 id="icons">Icons</h2>
<div style="overflow-x: scroll;">
<table class="bcls-table">
<caption class="bcls-caption--table">Icon use</caption>
<thead class="bcls-table__head">
<tr>
<th width="121">Topic</th>
<th width="123">Icon</th>
<th width="494">Code</th>
</tr>
</thead>
<tbody class="bcls-table__body">
<tr>
<td>Administration, Administering Accounts</td>
<td align="center"><i class="fa-regular fa-gear fa-xl"></i></td>
<td><i class="fa-regular fa-gear"></i></td>
</tr>
<tr>
<td>Adobe</td>
<td align="center"><i class="fa-regular fa-a fa-xl"></i></td>
<td><i class="fa-regular fa-a"></i></td>
</tr>
<tr>
<td>Advanced Topics, Advanced Features</td>
<td align="center"><i class="fa-regular fa-diamond fa-xl"></i></td>
<td><i class="fa-regular fa-diamond"></i></td>
</tr>
<tr>
<td>Advertising</td>
<td align="center"><i class="fa-regular fa-rectangle-ad fa-xl"></i></td>
<td><i class="fa-regular fa-rectangle-ad"></i></td>
</tr>
<tr>
<td>Analytics, Reviewing Analytics, Using Analytics Module</td>
<td align="center"><i class="fa-regular fa-chart-line-up fa-xl"></i></td>
<td><i class="fa-regular fa-chart-line-up"></i></td>
</tr>
<tr>
<td>Android</td>
<td align="center"><i class="fa-brands fa-android fa-xl"></i></td>
<td><i class="fa-brands fa-android"></i></td>
</tr>
<tr>
<td>Annotations, Custom Annotations</td>
<td align="center"><i class="fa-regular fa-bookmark fa-xl"></i></td>
<td><i class="fa-regular fa-bookmark"></i></td>
</tr>
<tr>
<td>Appearance and Controls</td>
<td align="center"><i class="fa-regular fa-sidebar fa-xl"></i></td>
<td><i class="fa-regular fa-sidebar"></i></td>
</tr>
<tr>
<td>Aspera</td>
<td align="center"><i class="fa-regular fa-folder-arrow-up fa-xl"></i></td>
<td><i class="fa-regular fa-folder-arrow-up"></i></td>
</tr>
<tr>
<td>Audience</td>
<td align="center"><i class="fa-regular fa-vector-square fa-xl"></i></td>
<td><i class="fa-regular fa-vector-square"></i></td>
</tr>
<tr>
<td>Basics</td>
<td align="center"><i class="fa-regular fa-cubes fa-xl"></i></td>
<td><i class="fa-regular fa-cubes"></i></td>
</tr>
<tr>
<td>Beacon Web Store</td>
<td align="center"><i class="fa-regular fa-store fa-xl"></i></td>
<td><i class="fa-regular fa-store"></i></td>
</tr>
<tr>
<td>Brightcove Video Connect for Microsoft Teams</td>
<td align="center"><i class="fa-brands fa-microsoft fa-xl"></i></td>
<td><i class="fa-brands fa-microsoft"></i></td>
</tr>
<tr>
<td>Build</td>
<td align="center"><i class="fa-regular fa-cubes-stacked fa-xl"></i></td>
<td><i class="fa-regular fa-cubes"></i></td>
</tr>
<tr>
<td>Campaign, Administering Campaign</td>
<td align="center"><i class="fa-regular fa-vector-square fa-xl"></i></td>
<td><i class="fa-regular fa-vector-square"></i></td>
</tr>
<tr>
<td>Captions</td>
<td align="center"><i class="fa-regular fa-closed-captioning fa-xl"></i></td>
<td><i class="fa-regular fa-closed-captioning"></i></td>
</tr>
<tr>
<td>Channels, Beacon Channels, Cloud Playout Channels</td>
<td align="center"><i class="fa-regular fa-table-list fa-xl"></i></td>
<td><i class="fa-regular fa-table-list"></i></td>
</tr>
<tr>
<td>Cloud Playout</td>
<td align="center"><i class="fa-regular fa-cloud-bolt fa-xl"></i></td>
<td><i class="fa-regular fa-cloud-bolt"></i></td>
</tr>
<tr>
<td>Code Samples</td>
<td align="center"><i class="fa-regular fa-file-code fa-xl"></i></td>
<td><i class="fa-regular fa-file-code"></i></td>
</tr>
<tr>
<td>Coding Topics, Code</td>
<td align="center"><i class="fa-regular fa-code fa-xl"></i></td>
<td><i class="fa-regular fa-code"></i></td>
</tr>
<tr>
<td>CMS</td>
<td align="center"><i class="fa-regular fa-folder-grid fa-xl"></i></td>
<td><i class="fa-regular fa-folder-grid"></i></td>
</tr>
<tr>
<td>Cross-Device Resume (XDR)</td>
<td align="center"><i class="fa-regular fa-laptop-mobile fa-xl"></i></td>
<td><i class="fa-regular fa-laptop-mobile"></i></td>
</tr>
<tr>
<td>Data Collection</td>
<td align="center"><i class="fa-regular fa-binary fa-xl"></i></td>
<td><i class="fa-regular fa-binary"></i></td>
</tr>
<tr>
<td><p>Delivery Rules</p></td>
<td align="center"><i class="fa-regular fa-memo-circle-check fa-xl"></i></td>
<td><i class="fa-regular fa-memo-circle-check"></i></td>
</tr>
<tr>
<td>Delivery System</td>
<td align="center"><i class="fa-regular fa-truck fa-xl"></i></td>
<td><i class="fa-regular fa-truck"></i></td>
</tr>
<tr>
<td>Developers</td>
<td align="center"><i class="fa-regular fa-rectangle-code fa-xl"></i></td>
<td><i class="fa-regular fa-rectangle-code"></i></td>
</tr>
<tr>
<td>Developer Support</td>
<td align="center"><i class="fa-regular fa-comments-question-check fa-xl"></i></td>
<td><i class="fa-regular fa-comments-question-check"></i></td>
</tr>
<tr>
<td>Dimension, Dimension Guides</td>
<td align="center"><i class="fa-regular fa-cube"></i></td>
<td><i class="fa-regular fa-cube"></i></td>
</tr>
<tr>
<td>DRM</td>
<td align="center"><i class="fa-regular fa-lock fa-xl"></i></td>
<td><i class="fa-regular fa-lock"></i></td>
</tr>
<tr>
<td>Drupal</td>
<td align="center"><i class="fa-brands fa-drupal fa-xl"></i></td>
<td><i class="fa-brands fa-drupal"></i></td>
</tr>
<tr>
<td>Dynamic Ingest</td>
<td align="center"><i class="fa-regular fa-cloud-arrow-up fa-xl"></i></td>
<td><i class="fa-regular fa-cloud-arrow-up"></i></td>
</tr>
<tr>
<td>eCDN</td>
<td align="center"><i class="fa-regular fa-chart-network fa-xl"></i></td>
<td><i class="fa-regular fa-chart-network"></i></td>
</tr>
<tr>
<td>eCommerce</td>
<td align="center"><i class="fa-regular fa-cart-shopping fa-xl"></i></td>
<td><i class="fa-regular fa-cart-shopping"></i></td>
</tr>
<tr>
<td>Experiences</td>
<td align="center"><i class="fa-regular fa-browsers fa-xl"></i></td>
<td><i class="fa-regular fa-browsers"></i></td>
</tr>
<tr>
<td>Features</td>
<td align="center"><i class="fa-regular fa-sparkles fa-xl"></i></td>
<td><i class="fa-regular fa-sparkles"></i></td>
</tr>
<tr>
<td>General Topics</td>
<td align="center"><i class="fa-regular fa-book fa-xl"></i></td>
<td><i class="fa-regular fa-book"></i></td>
</tr>
<tr>
<td>Get Started</td>
<td align="center"><i class="fa-regular fa-map-pin fa-xl"></i></td>
<td><i class="fa-regular fa-map-pin"></i></td>
</tr>
<tr>
<td>Guides</td>
<td align="center"><i class="fa-regular fa-books fa-xl"></i></td>
<td><i class="fa-regular fa-books"></i></td>
</tr>
<tr>
<td>Home</td>
<td align="center"><i class="fa-regular fa-house-blank fa-xl"></i></td>
<td><i class="fa-regular fa-house-blank"></i></td>
</tr>
<tr>
<td>Hootsuite</td>
<td align="center"><i class="fa-regular fa-h fa-xl"></i></td>
<td><i class="fa-regular fa-h"></i></td>
</tr>
<tr>
<td>Image</td>
<td align="center"><i class="fa-regular fa-image fa-xl"></i></td>
<td><i class="fa-regular fa-image"></i></td>
</tr>
<tr>
<td>In-Page, In-Page Experience</td>
<td align="center"><i class="fa-regular fa-sidebar-flip fa-xl"></i></td>
<td><i class="fa-regular fa-sidebar-flip"></i></td>
</tr>
<tr>
<td>Information, General Information</td>
<td align="center"><i class="fa-regular fa-circle-info fa-xl"></i></td>
<td><i class="fa-regular fa-circle-info"></i></td>
</tr>
<tr>
<td>Ingest Profile, Managing Ingest Profiles</td>
<td align="center"><i class="fa-regular fa-sliders fa-xl"></i></td>
<td><i class="fa-regular fa-sliders"></i></td>
</tr>
<tr>
<td>Ingestion, Ingestions MRSS</td>
<td align="center"><i class="fa-regular fa-cloud-arrow-up fa-xl"></i></td>
<td><i class="fa-regular fa-cloud-arrow-up"></i></td>
</tr>
<tr>
<td>Integrations</td>
<td align="center"><i class="fa-regular fa-puzzle-piece-simple fa-xl"></i></td>
<td><i class="fa-regular fa-puzzle-piece-simple"></i></td>
</tr>
<tr>
<td>Interactivity</td>
<td align="center"><i class="fa-regular fa-hand-back-point-up fa-xl"></i></td>
<td><i class="fa-regular fa-hand-back-point-up"></i></td>
</tr>
<tr>
<td>iOS</td>
<td align="center"><i class="fa-brands fa-apple fa-xl"></i></td>
<td><i class="fa-brands fa-apple"></i></td>
</tr>
<tr>
<td>Landing Page, Landing Page Experience</td>
<td align="center"><i class="fa-regular fa-file-lines fa-xl"></i></td>
<td><i class="fa-regular fa-file-lines"></i></td>
</tr>
<tr>
<td>Live, Live Streaming, Live Event, Live Events, Using the Live Module</td>
<td align="center"><i class="fa-regular fa-satellite-dish fa-xl"></i></td>
<td><i class="fa-regular fa-satellite-dish"></i></td>
</tr>
<tr>
<td>Marketing Automation, Campaign</td>
<td align="center"><i class="fa-regular fa-chart-network fa-xl"></i></td>
<td><i class="fa-regular fa-chart-network"></i></td>
</tr>
<tr>
<td>Media, Managing Media, Using the Media Module</td>
<td align="center"><i class="fa-regular fa-photo-film fa-xl"></i></td>
<td><i class="fa-regular fa-photo-film"></i></td>
</tr>
<tr>
<td>Monetization, Monetizing Content</td>
<td align="center"><i class="fa-regular fa-money-bills fa-xl"></i></td>
<td><i class="fa-regular fa-money-bills"></i></td>
</tr>
<tr>
<td>OAuth</td>
<td align="center"><i class="fa-regular fa-shield fa-xl"></i></td>
<td><i class="fa-regular fa-shield"></i></td>
</tr>
<tr>
<td>Organizing, Organizing Videos</td>
<td align="center"><i class="fa-regular fa-folder-tree fa-xl"></i></td>
<td><i class="fa-regular fa-folder-tree"></i></td>
</tr>
<tr>
<td>Overview, Product Overview</td>
<td align="center"><i class="fa-regular fa-file fa-xl"></i></td>
<td><i class="fa-regular fa-file"></i></td>
</tr>
<tr>
<td>Pages, Managing Pages</td>
<td align="center"><i class="fa-regular fa-files fa-xl"></i></td>
<td><i class="fa-regular fa-files"></i></td>
</tr>
<tr>
<td>Players, Playback, Managing Players, Non-Brightcove Players, Using the Players Module, Player Properties</td>
<td align="center"><i class="fa-regular fa-play fa-xl"></i></td>
<td><i class="fa-regular fa-play"></i></td>
</tr>
<tr>
<td>Plugins</td>
<td align="center"><i class="fa-regular fa-plug fa-xl"></i></td>
<td><i class="fa-regular fa-plug"></i></td>
</tr>
<tr>
<td>Policy</td>
<td align="center"><i class="fa-regular fa-key-skeleton-left-right fa-xl"></i></td>
<td><i class="fa-regular fa-key-skeleton-left-right"></i></td>
</tr>
<tr>
<td>Portal, Portal Experience</td>
<td align="center"><i class="fa-regular fa-browser fa-xl"></i></td>
<td><i class="fa-regular fa-browser"></i></td>
</tr>
<tr>
<td>Projects</td>
<td align="center"><i class="fa-regular fa-object-group fa-xl"></i></td>
<td><i class="fa-regular fa-object-group"></i></td>
</tr>
<tr>
<td>Publishing Videos, Publishing Players, Publishing, Publishing to Third-Party Apps</td>
<td align="center"><i class="fa-regular fa-display-code fa-xl"></i></td>
<td><i class="fa-regular fa-display-code"></i></td>
</tr>
<tr>
<td>References</td>
<td align="center"><i class="fa-regular fa-books fa-xl"></i></td>
<td><i class="fa-regular fa-books"></i></td>
</tr>
<tr>
<td>Registered Users</td>
<td align="center"><i class="fa-regular fa-users fa-xl"></i></td>
<td><i class="fa-regular fa-users"></i></td>
</tr>
<tr>
<td>Release Notes, Notes</td>
<td align="center"><i class="fa-regular fa-memo-pad fa-xl"></i></td>
<td><i class="fa-regular fa-memo-pad"></i></td>
</tr>
<tr>
<td>Series and Seasons</td>
<td align="center"><i class="fa-regular fa-list-timeline fa-xl"></i></td>
<td><i class="fa-regular fa-list-timeline"></i></td>
</tr>
<tr>
<td>Settings</td>
<td align="center"><i class="fa-regular fa-gear fa-xl"></i></td>
<td><i class="fa-regular fa-gear"></i></td>
</tr>
<tr>
<td>Sharing and Embedding</td>
<td align="center"><i class="fa-regular fa-share-from-square fa-xl"></i></td>
<td><i class="fa-regular fa-share-from-square"></i></td>
</tr>
<tr>
<td>Sharepoint</td>
<td align="center"><i class="fa-regular fa-s fa-xl"></i></td>
<td><i class="fa-regular fa-s"></i></td>
</tr>
<tr>
<td>Sitecore</td>
<td align="center"><i class="fa-regular fa-s fa-xl"></i></td>
<td><i class="fa-regular fa-s"></i></td>
</tr>
<tr>
<td>Social</td>
<td align="center"><i class="fa-regular fa-share-nodes fa-xl"></i></td>
<td><i class="fa-regular fa-share-nodes"></i></td>
</tr>
<tr>
<td>SSAI</td>
<td align="center"><i class="fa-regular fa-rectangle-ad fa-xl"></i></td>
<td><i class="fa-regular fa-rectangle-ad"></i></td>
</tr>
<tr>
<td>Styling</td>
<td align="center"><i class="fa-regular fa-brush fa-xl"></i></td>
<td><i class="fa-regular fa-brush"></i></td>
</tr>
<tr>
<td>Support</td>
<td align="center"><i class="fa-regular fa-comments-question-check fa-xl"></i></td>
<td><i class="fa-regular fa-comments-question-check"></i></td>
</tr>
<tr>
<td>Templates</td>
<td align="center"><i class="fa-regular fa-clone fa-xl"></i></td>
<td><i class="fa-regular fa-clone"></i></td>
</tr>
<tr>
<td>Training</td>
<td align="center"><i class="fa-regular fa-chalkboard-user fa-xl"></i></td>
<td><i class="fa-regular fa-chalkboard-user"></i></td>
</tr>
<tr>
<td>Troubleshooting</td>
<td align="center"><i class="fa-regular fa-bug fa-xl"></i></td>
<td><i class="fa-regular fa-bug"></i></td>
</tr>
<tr>
<td>tvOS</td>
<td align="center"><i class="fa-brands fa-apple fa-xl"></i></td>
<td><i class="fa-brands fa-apple"></i></td>
</tr>
<tr>
<td>Upload</td>
<td align="center"><i class="fa-regular fa-cloud-arrow-up fa-xl"></i></td>
<td><i class="fa-regular fa-cloud-arrow-up"></i></td>
</tr>
<tr>
<td>Utilities</td>
<td align="center"><i class="fa-regular fa-toolbox fa-xl"></i></td>
<td><i class="fa-regular fa-toolbox"></i></td>
</tr>
<tr>
<td>User</td>
<td align="center"><i class="fa-regular fa-user fa-xl"></i></td>
<td><i class="fa-regular fa-user"></i></td>
</tr>
<tr>
<td>Videos, Managing Videos, Managing Video Files, Video Properties, Organizing Videos</td>
<td align="center"><i class="fa-regular fa-film fa-xl"></i></td>
<td><i class="fa-regular fa-film"></i></td>
</tr>
<tr>
<td>Virtual Event, Virtual Event Experience</td>
<td align="center"><i class="fa-regular fa-calendar-circle-user fa-xl"></i></td>
<td><i class="fa-regular fa-calendar-circle-user"></i></td>
</tr>
<tr>
<td>Web Conferencing</td>
<td align="center"><i class="fa-regular fa-camera-web fa-xl"></i></td>
<td><i class="fa-regular fa-camera-web"></i></td>
</tr>
<tr>
<td>Wordpress</td>
<td align="center"><i class="fa-brands fa-wordpress fa-xl"></i></td>
<td><i class="fa-brands fa-wordpress"></i></td>
</tr>
</tbody>
</table>
</div>
</section>
<section class="bcls-section">
<h2 id="notes">Notes</h2>
<p>Note link: Some text with a note<sup><strong><a href="#note1-1">[1-1]</a></strong></sup></p>
<pre><code class="language-html" translate="No"><p>Note link: Some text with a note<sup><strong><a href="#note1-1">[1-1]</a></strong></sup></p></code></pre>
<h3>Notes</h3>
<ul>
<li id="note1-1" style="list-style: none;"><sup><strong>[1-1]</strong></sup> Here is the note text</li>
</ul>
<pre><code class="language-html" translate="No"><h3>Notes</h3>
<ul>
<li id="note1-1" style="list-style: none;"><sup><strong>[1-1]</strong></sup> Here is the note text</li>
</ul></code></pre>
</section>
</article>