Last active
August 26, 2023 10:50
-
-
Save adamstallard/6433091 to your computer and use it in GitHub Desktop.
How to reuse part of an attribute string in modest.
This file contains hidden or 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
| <?xml version='1.0' encoding='UTF-8'?> | |
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <include>myImage</include> | |
| </head> | |
| <body> | |
| <myImage> | |
| <base>..</base> | |
| </myImage> | |
| </body> | |
| </html> |
This file contains hidden or 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
| <img uses="href={{{{base}}/img/image.jpeg}}"/> |
This file contains hidden or 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
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| </head> | |
| <body> | |
| <img class="myImage" href="../img/image.jpeg" /> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment