Skip to main content

Article page showing HTML tags in SharePoint 2013

Article page showing HTML tags, use below PowerShell to fix as mentioned here :

http://labs.steveottenad.com/publishing-columns-show-escaped-html-in-sharepoint-2010/

Add-PSSnapin "Microsoft.SharePoint.PowerShell"
$web = Get-SPWeb "https://contoso.com/sites/mysite/it/"
$list = $web.GetPublishingPages();

foreach ($page in $list.Items)
{
    if ($page.Title -eq "Testing123")
    {
        [Microsoft.SharePoint.Publishing.Fields.HtmlField]$field = [Microsoft.SharePoint.Publishing.Fields.HtmlField]$list.Fields[“Page Content”]
        $field.RichText = $true
        $field.RichTextMode = [Microsoft.SharePoint.SPRichTextMode]::FullHtml
        $field.Update()
        break;
    }
}
$list.Update()
$web.dispose()

Hope this helps!!!

Comments

Popular posts from this blog

Permission audit report for site and all sub sites using PowerShell

Use below script to get Permission audit report for site and all sub sites using PowerShell, Add-PSSnapin "Microsoft.SharePoint.PowerShell" $URL="https://intranet.contoso.com/sales/mysite/"      $site = Get-SPSite $URL      #Write the Header to "Tab Separated Text File"         "Site Name`t  URL `t Group Name `t User Account `t User Name `t E-Mail" | out-file "E:\Ulhas\UsersandGroupsRpt.txt"          #Iterate through all Webs       foreach ($web in $site.AllWebs)       {         #Write the Header to "Tab Separated Text File"         "$($web.title) `t $($web.URL) `t  `t  `t `t " | out-file "E:\Ulhas\UsersandGroupsRpt.txt" -append          #Get all Groups and Iterate through            foreach ($group in $Web.groups)         ...