Skip to content

Commit

Permalink
chore: Fix ktlint
Browse files Browse the repository at this point in the history
  • Loading branch information
kongwoojin committed May 3, 2024
1 parent 04d52ef commit 41d5a3d
Showing 1 changed file with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,8 @@ fun HtmlView(
attributeMap[attributeName] = attributeValue
}
webViewHtml += "<table ${
attributeMap.map { (key, value) -> "$key=\"$value\"" }
.joinToString(" ")
attributeMap.map { (key, value) -> "$key=\"$value\"" }
.joinToString(" ")
}>"
}

Expand All @@ -225,8 +225,8 @@ fun HtmlView(
attributeMap[attributeName] = attributeValue
}
webViewHtml += "<tr ${
attributeMap.map { (key, value) -> "$key=\"$value\"" }
.joinToString(" ")
attributeMap.map { (key, value) -> "$key=\"$value\"" }
.joinToString(" ")
}>"
}

Expand All @@ -239,8 +239,8 @@ fun HtmlView(
attributeMap[attributeName] = attributeValue
}
webViewHtml += "<td ${
attributeMap.map { (key, value) -> "$key=\"$value\"" }
.joinToString(" ")
attributeMap.map { (key, value) -> "$key=\"$value\"" }
.joinToString(" ")
}>"
}

Expand All @@ -253,8 +253,8 @@ fun HtmlView(
attributeMap[attributeName] = attributeValue
}
webViewHtml += "<th ${
attributeMap.map { (key, value) -> "$key=\"$value\"" }
.joinToString(" ")
attributeMap.map { (key, value) -> "$key=\"$value\"" }
.joinToString(" ")
}>"
}

Expand All @@ -267,8 +267,8 @@ fun HtmlView(
attributeMap[attributeName] = attributeValue
}
webViewHtml += "<colgroup ${
attributeMap.map { (key, value) -> "$key=\"$value\"" }
.joinToString(" ")
attributeMap.map { (key, value) -> "$key=\"$value\"" }
.joinToString(" ")
}>"
}

Expand All @@ -281,8 +281,8 @@ fun HtmlView(
attributeMap[attributeName] = attributeValue
}
webViewHtml += "<col ${
attributeMap.map { (key, value) -> "$key=\"$value\"" }
.joinToString(" ")
attributeMap.map { (key, value) -> "$key=\"$value\"" }
.joinToString(" ")
}>"
}
}
Expand Down

0 comments on commit 41d5a3d

Please sign in to comment.