Skip to content

Commit dee9929

Browse files
authored
Merge pull request #18 from contentstack/next
Fix: Classname and id property support added in TextNode
2 parents 83cb897 + 556f549 commit dee9929

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11

2+
### Version: 1.0.4
3+
#### Date: Aug-21-2024
4+
- Classname and ID property support in text node
5+
26
### Version: 1.0.3
37
#### Date: Jul-10-2024
48
- Editable tags added

Contentstack.Utils.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Global
2121
{EB2B5E23-E45F-4C6C-BF98-FE3971DE4250}.Release|Any CPU.Build.0 = Release|Any CPU
2222
EndGlobalSection
2323
GlobalSection(MonoDevelopProperties) = preSolution
24-
version = 1.0.2
24+
version = 1.0.4
2525
Policies = $0
2626
$0.DotNetNamingPolicy = $1
2727
$1.DirectoryNamespaceAssociation = PrefixedHierarchical

Contentstack.Utils/Models/TextNode.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ public class TextNode: Node
1010
public bool inlineCode { get; set; }
1111
public bool subscript { get; set; }
1212
public bool superscript { get; set; }
13+
public string classname { get; set; }
14+
public string id { get; set; }
1315
public string text { get; set; }
1416
}
1517
}

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>1.0.3</Version>
3+
<Version>1.0.4</Version>
44
</PropertyGroup>
55
</Project>

0 commit comments

Comments
 (0)