Skip to content

Instantly share code, notes, and snippets.

@adamstallard
Last active August 26, 2023 10:50
Show Gist options
  • Select an option

  • Save adamstallard/6433091 to your computer and use it in GitHub Desktop.

Select an option

Save adamstallard/6433091 to your computer and use it in GitHub Desktop.
How to reuse part of an attribute string in modest.
<?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>
<img uses="href={{{{base}}/img/image.jpeg}}"/>
<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