I'm writing a macro to calculate shares of the loot in my pirate campaign. This code works; it prompts for values, outputs a bold headline and the results. ** ========== HEAR YE ========== ** Of ?{Shares|5} shares of ?{Pieces of 8|100} pieces of 8: 1 share is [[ floor(?{Pieces of 8}/?{Shares}) ]] Po8 2 shares is [[ floor(?{Pieces of 8}/?{Shares}*2) ]] Po8 3 shares is [[ floor(?{Pieces of 8}/?{Shares}*3) ]] Po8 But this doesn't. The headline is in monospace red, followed by a single backtick, and then the macro is printed. No prompts, no calculations. What's wrong here? ``` ========== HEAR YE ========== ``` Of ?{Shares|5} shares of ?{Pieces of 8|100} pieces of 8: 1 share is [[ floor(?{Pieces of 8}/?{Shares}) ]] Po8 2 shares is [[ floor(?{Pieces of 8}/?{Shares}*2) ]] Po8 3 shares is [[ floor(?{Pieces of 8}/?{Shares}*3) ]] Po8