{overview.title}
{overview.description}
{overview.feature_1.title}
{overview.feature_1.description}
{overview.feature_2.title}
{overview.feature_2.description}
{overview.feature_3.title}
{overview.feature_3.description}
// {code.comment_1}
this.editor = new Editor(this.inputFilePath);
// Edit document
const beforeEdit = await this.editor.edit();
// Save edited document
await this.editor.save(afterEdit, this.outputPath, this.saveOptions);
dotnet add package GroupDocs.Editor
{overview.description}
{overview.feature_1.description}
{overview.feature_2.description}
{overview.feature_3.description}
{platforms.description}
{formats.description}
{features.description}
{features.feature_1.title}
{features.feature_1.content}
{features.feature_2.title}
{features.feature_2.content}
{features.feature_3.title}
{features.feature_3.content}
{features.feature_4.title}
{features.feature_4.content}
{features.feature_5.title}
{features.feature_5.content}
{features.feature_6.title}
{features.feature_6.content}
{features.feature_7.title}
{features.feature_7.content}
{features.feature_8.title}
{features.feature_8.content}
{features.feature_9.title}
{features.feature_9.content}
{code_samples.description}
// Load document
this.editor = new Editor(this.inputFilePath);
// Edit document
const beforeEdit = await this.editor.edit();
// Save edited document
await this.editor.save(afterEdit, this.outputPath, this.saveOptions);
const editOptions = new MarkdownEditOptions();
editOptions.setImageLoadCallback(new MdImageLoader(imagesFolder));
const editor = new Editor(inputMdPath);
const beforeEdit = await editor.edit(editOptions);
await editor.save(afterEdit, outputDocxPath, saveOptions);