-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mark tags deprecated in html: https://www.w3docs.com/learn-html/depre…
- Loading branch information
Showing
8 changed files
with
20 additions
and
10 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
repository/Seaside-Canvas.package/WAHtmlCanvas.class/instance/acronym..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
tags-block | ||
tags-deprecated | ||
acronym: aBlock | ||
self acronym with: aBlock |
6 changes: 4 additions & 2 deletions
6
repository/Seaside-Canvas.package/WAHtmlCanvas.class/instance/acronym.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
tags-block | ||
tags-deprecated | ||
acronym | ||
"Defines an acronym, such as 'GmbH', 'NATO', and 'F.B.I.'" | ||
|
||
self | ||
greaseDeprecatedApi: 'WAHtmlCanvas>>acronym' | ||
details: 'https://www.w3docs.com/learn-html/deprecated-html-tags.html'. | ||
^ self tag: 'acronym' |
2 changes: 1 addition & 1 deletion
2
repository/Seaside-Canvas.package/WAHtmlCanvas.class/instance/big..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
tags-format | ||
tags-deprecated | ||
big: aBlock | ||
self big with: aBlock |
6 changes: 4 additions & 2 deletions
6
repository/Seaside-Canvas.package/WAHtmlCanvas.class/instance/big.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
tags-format | ||
tags-deprecated | ||
big | ||
"Defines big text." | ||
|
||
self | ||
greaseDeprecatedApi: 'WAHtmlCanvas>>big' | ||
details: 'https://www.w3docs.com/learn-html/deprecated-html-tags.html'. | ||
^ self tag: 'big' |
2 changes: 1 addition & 1 deletion
2
repository/Seaside-Canvas.package/WAHtmlCanvas.class/instance/embed..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
tags | ||
tags-deprecated | ||
embed: aBlock | ||
self embed with: aBlock |
5 changes: 4 additions & 1 deletion
5
repository/Seaside-Canvas.package/WAHtmlCanvas.class/instance/embed.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
tags | ||
tags-deprecated | ||
embed | ||
"The embed element represents an integration point for an external (typically non-HTML) application or interactive content." | ||
self | ||
greaseDeprecatedApi: 'WAHtmlCanvas>>embed' | ||
details: 'https://www.w3docs.com/learn-html/deprecated-html-tags.html'. | ||
^ self brush: WAEmbedTag new |
2 changes: 1 addition & 1 deletion
2
repository/Seaside-Canvas.package/WAHtmlCanvas.class/instance/menu..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
tags | ||
tags-deprecated | ||
menu: aBlock | ||
self menu with: aBlock |
5 changes: 4 additions & 1 deletion
5
repository/Seaside-Canvas.package/WAHtmlCanvas.class/instance/menu.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
tags | ||
tags-deprecated | ||
menu | ||
self | ||
greaseDeprecatedApi: 'WAHtmlCanvas>>menu' | ||
details: 'https://www.w3docs.com/learn-html/deprecated-html-tags.html'. | ||
^ self brush: WAMenuTag new |