1package marker 2 3const ( 4 // General marker (open/close) 5 General = "§" 6 // ParenthesisOpen marker - begin of a placeholder 7 ParenthesisOpen = "{{" 8 // ParenthesisClose marker - end of a placeholder 9 ParenthesisClose = "}}" 10) 11 12