Skip to content

Commit

Permalink
Use empty replacement for fsdocs-meta-tags in API docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
nojaf committed Dec 7, 2023
1 parent c28f982 commit 241f48e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/FSharp.Formatting.ApiDocs/GenerateHtml.fs
Original file line number Diff line number Diff line change
Expand Up @@ -663,10 +663,11 @@ type HtmlRender(model: ApiDocModel, ?menuTemplateFolder: string) =
[| yield! parameters
yield (ParamKeys.``fsdocs-list-of-namespaces``, toc)
yield (ParamKeys.``fsdocs-content``, content.ToString())
yield (ParamKeys.``fsdocs-source``, "")
yield (ParamKeys.``fsdocs-tooltips``, "")
yield (ParamKeys.``fsdocs-source``, String.Empty)
yield (ParamKeys.``fsdocs-tooltips``, String.Empty)
yield (ParamKeys.``fsdocs-page-title``, pageTitle)
yield (ParamKeys.``fsdocs-page-content-list``, PageContentList.EmptyContent)
yield (ParamKeys.``fsdocs-meta-tags``, String.Empty)
yield! globalParameters |]

let collection = model.Collection
Expand Down

0 comments on commit 241f48e

Please sign in to comment.