We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0497c23 commit e07678aCopy full SHA for e07678a
Sources/SwiftHtml/Attributes/Target.swift
@@ -20,7 +20,7 @@ public enum TargetFrame {
20
/// Opens the linked document in a new window or tab
21
case blank
22
/// Opens the linked document in the same frame as it was clicked (this is default)
23
- case `self`
+ case `default`
24
/// Opens the linked document in the parent frame
25
case parent
26
/// Opens the linked document in the full body of the window
@@ -32,7 +32,7 @@ public enum TargetFrame {
32
switch self {
33
case .blank:
34
return "_blank"
35
- case .self:
+ case .`default`:
36
return "_self"
37
case .parent:
38
return "_parent"
0 commit comments