Hi All I have a 5e macro that uses nested queries so a player can choose to drink a healing potion as an action or as a bonus action. If I copy and paste the code directly into the chat window, it works fine. However, if I turn it into an actual macro, the HTML codes get converted into their corresponding characters and the nesting doesn't work properly. Here's the code &{template:default}{{name=Healing Potion}}{{?{action type|bonus,?{Potion|Regular, **Healing Potion Used:** [[2d4+2]]|Greater, **Greater Healing Potion Used:** [[4d4+4]]|Superior, **Superior Healing Potion Used:** [[8d4+8]]|Supreme, **Supreme Healing Potion Used:** [[10d4+20]]}|full,?{Potion|Regular, **Healing Potion Used:** [[10]]|Greater, **Greater Healing Potion Used:** [[20]]|Superior, **Superior Healing Potion Used:** [[40]]|Supreme, **Supreme Healing Potion Used:** [[60]]}}}} When I paste it into the macro window, it turns into this: &{template:default}{{name=Healing Potion}}{{?{action type|bonus,?{Potion|Regular, **Healing Potion Used:** [[2d4+2]]|Greater, **Greater Healing Potion Used:** [[4d4+4]]|Superior, **Superior Healing Potion Used:** [[8d4+8]]|Supreme, **Supreme Healing Potion Used:** [[10d4+20]]}|full,?{Potion|Regular, **Healing Potion Used:** [[10]]|Greater, **Greater Healing Potion Used:** [[20]]|Superior, **Superior Healing Potion Used:** [[40]]|Supreme, **Supreme Healing Potion Used:** [[60]]}}}} Does anyone know how to prevent this conversion from happening?