Skip to content

Commit 3a40ef3

Browse files
committed
fix: rebase with latest main
1 parent d00680d commit 3a40ef3

3 files changed

Lines changed: 9 additions & 0 deletions

File tree

ios/styles/H4Style.mm

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ + (StyleType)getStyleType {
88
+ (BOOL)isParagraphStyle {
99
return YES;
1010
}
11+
+ (const char *)tagName {
12+
return "h4";
13+
}
1114
- (CGFloat)getHeadingFontSize {
1215
return [((EnrichedTextInputView *)input)->config h4FontSize];
1316
}

ios/styles/H5Style.mm

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ + (StyleType)getStyleType {
88
+ (BOOL)isParagraphStyle {
99
return YES;
1010
}
11+
+ (const char *)tagName {
12+
return "h5";
13+
}
1114
- (CGFloat)getHeadingFontSize {
1215
return [((EnrichedTextInputView *)input)->config h5FontSize];
1316
}

ios/styles/H6Style.mm

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ + (StyleType)getStyleType {
88
+ (BOOL)isParagraphStyle {
99
return YES;
1010
}
11+
+ (const char *)tagName {
12+
return "h6";
13+
}
1114
- (CGFloat)getHeadingFontSize {
1215
return [((EnrichedTextInputView *)input)->config h6FontSize];
1316
}

0 commit comments

Comments
 (0)