How can line breaks be added within a HTML tooltip?
I tried using and \\n within the tooltip as follows:
\\n
This CSS is what finally worked for me in conjunction with a linefeed in my editor:
.tooltip-inner { white-space: pre-wrap; }
Found here: How to make Twitter bootstrap tooltips have multiple lines?