1
vote
jQuery string manipulation, regex noob.
.replace(/\[([^\]]*)\]/g, link + "$1</a>")
which means, find text between [ and ] and replace it with the value of link, the text itself and ''. This ensures matchin …
