com.vladsch.flexmark.formatter.TranslationHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark Show documentation
Show all versions of flexmark Show documentation
Core of flexmark-java (implementation of CommonMark for parsing markdown and rendering to HTML)
The newest version!
package com.vladsch.flexmark.formatter;
import com.vladsch.flexmark.util.ast.Document;
import org.jetbrains.annotations.NotNull;
import java.util.List;
public interface TranslationHandler extends TranslationContext {
void beginRendering(@NotNull Document node, @NotNull NodeFormatterContext context, @NotNull MarkdownWriter out);
@NotNull List getTranslatingTexts();
void setTranslatedTexts(@NotNull List extends CharSequence> translatedTexts);
void setRenderPurpose(@NotNull RenderPurpose renderPurpose);
void setMergeContext(@NotNull MergeContext context);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy