Document.be constructor
Document.be(
- BlockParserBuilder _blockParserBuilder,
- InlineParserBuilder _inlineParserBuilder, {
- Resolver? linkResolver,
- Resolver? imageLinkResolver,
- bool encodeHtml = true,
- bool withDefaultBlockSyntaxes = true,
- bool withDefaultInlineSyntaxes = true,
- bool hasCustomInlineSyntaxes = false,
- bool checkable = false,
- bool preserveSpace = false,
- dynamic options,
Constructs a fully customized Document. Usually used with BlockParser.be and InlineParser.be.
Implementation
Document.be(
this._blockParserBuilder, this._inlineParserBuilder, {
this.linkResolver,
this.imageLinkResolver,
this.encodeHtml = true,
this.withDefaultBlockSyntaxes = true, //useless if [BlockParser.be] used
this.withDefaultInlineSyntaxes = true, //useless if [InlineParser.be] used
this.hasCustomInlineSyntaxes = false, //useless if [InlineParser.be] used
this.checkable = false,
this.preserveSpace = false,
this.options,
});