What’s a Rich Text element?

  1. first numbered
  2. second numbered

The rich text element allows you to create and format headings, paragraphs, blockquotes, images, and video all in one place instead of having to add and format them individually. Just double-click and easily create content.

0,1215154844884815155787815154575451575754575754545

bbbbbbb

Static and dynamic content editing

A rich text element can be used with static or dynamic content. For static content, just drop it into any page and begin editing. For dynamic content, add a rich text field to any collection and then connect a rich text element to that field in the settings panel. Voila!

How to customize formatting for each rich text

Heading 5
param(    [string]$KuduRootUrl,    [string]$KuduUsername,    [string]$KuduPassword,    [string]$WebJobName,    [string]$WebjobArtifact,    [string]$ScheduleName = 'triggered')if (-not (Test-Path $WebjobArtifact)) {    throw [System.IO.FileNotFoundException] "$WebjobArtifact not found."}# Kudu Zip Deploy API URL$deployUrl = "$KuduRootUrl/zip/site/wwwroot/App_Data/jobs/$ScheduleName/$WebJobName/"# Prepare files$files = Get-ChildItem -Path $WebjobArtifact -RecurseTest-Path -Path $files[0]   # Authentication Header$usernamePasswordBase64 = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes(("{0}:{1}" -f $KuduUsername, $KuduPassword)))$authHeaderValue = "Basic $usernamePasswordBase64"# Invoke Kudu Zip Deploy API to deploy the WebJob$contentType = "multipart/form-data"$userAgent = "powershell/1.0"$ZipHeaders = @{Authorization = $authHeaderValue}$response = Invoke-RestMethod -Uri  ([System.Uri]::new($deployUrl)) -Headers $ZipHeaders  -UserAgent $userAgent -Method PUT -InFile $files[0] -ContentType $contentTypeWrite-Host "Deployment Successful"

Headings, paragraphs, blockquotes, figures, images, and figure captions can all be styled after a class is added to the rich text element using the "When inside of" nested selector system.

What’s a Rich Text element?

The rich text element allows you to create and format headings, paragraphs, blockquotes, images, and video all in one place instead of having to add and format them individually. Just double-click and easily create content.

0,1215154844884815155787815154575451575754575754545

bbbbbbb

Static and dynamic content editing

A rich text element can be used with static or dynamic content. For static content, just drop it into any page and begin editing. For dynamic content, add a rich text field to any collection and then connect a rich text element to that field in the settings panel. Voila!

How to customize formatting for each rich text

Heading 5
Heading 6

Headings, paragraphs, blockquotes, figures, images, and figure captions can all be styled after a class is added to the rich text element using the "When inside of" nested selector system.