Skip to content

Commit

Permalink
Merge branch 'release/9.1' into BefAft2
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeOliver28 authored Sep 5, 2024
2 parents ac90ccd + 28ea7af commit cd27245
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Src/xWorks/LcmWordGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -796,8 +796,8 @@ public IFragment GenerateWsPrefixWithString(ConfigurableDictionaryNode config, C

public IFragment GenerateAudioLinkContent(ConfigurableDictionaryNode config, string classname, string srcAttribute, string caption, string safeAudioId)
{
// TODO
return new DocFragment("TODO: generate audio link content");
// We are not planning to support audio and video content for Word Export.
return new DocFragment();
}
public IFragment WriteProcessedObject(ConfigurableDictionaryNode config, bool isBlock, IFragment elementContent, string className)
{
Expand Down Expand Up @@ -1657,7 +1657,8 @@ config.DictionaryNodeOptions is DictionaryNodeSenseOptions &&
}
public IFragment AddAudioWsContent(string wsId, Guid linkTarget, IFragment fileContent)
{
return new DocFragment("TODO: add audiows content");
// We are not planning to support audio and video content for Word Export.
return new DocFragment();
}
public IFragment GenerateErrorContent(StringBuilder badStrBuilder)
{
Expand All @@ -1666,7 +1667,8 @@ public IFragment GenerateErrorContent(StringBuilder badStrBuilder)
public IFragment GenerateVideoLinkContent(ConfigurableDictionaryNode config, string className, string mediaId, string srcAttribute,
string caption)
{
return new DocFragment("TODO: generate video link content");
// We are not planning to support audio and video content for Word Export.
return new DocFragment();
}
#endregion ILcmContentGenerator functions to implement

Expand Down

0 comments on commit cd27245

Please sign in to comment.