From 23737bc84699ec74fe31fbecd6d2f558339fea12 Mon Sep 17 00:00:00 2001 From: CatHood0 Date: Mon, 22 Jul 2024 01:52:56 -0400 Subject: [PATCH] improved AttributeScope section --- doc/attribute_introduction.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/attribute_introduction.md b/doc/attribute_introduction.md index 2973dd10..a638f2d7 100644 --- a/doc/attribute_introduction.md +++ b/doc/attribute_introduction.md @@ -14,8 +14,8 @@ The attributes has an Scope that limit where start and end the `Attribute`. The enum AttributeScope { inline, // just the selected text will apply the attribute (like: bold, italic or strike) block, // all the paragraph will apply the attribute (like: Header, Alignment or CodeBlock) - embeds, // the attr will be taked as a different part of any paragraph or line working as a block (By now not works as an inline) - ignore, // there are attribute that can be applied, but, on Retain operations will be ignored + embeds, // the attr will be taked as a different part of any paragraph or line, working as a block (By now not works as an inline) + ignore, // the attribute can be applied, but on Retain operations will be ignored } ```