Results 8 comments of Sean

You need to inject the angular [DomSanitizer ](https://angular.io/guide/security#xss) and use the `bypassSecurityTrustHtml` method. That gets around the `"sanitizing HTML stripped"` error, although I'm noticing that the smart table still doesn't...

@dandro32 the second example you're missing a double quote between `[mdTooltip]=` and `'`, also make sure that you're setting the column type to `html`

Same thing @jkon , inject the DomSanitizer into your component, then in that valuePrepareFunction wrap that string value that you're returning, e.g. `this.sanitizer.bypassSecurityTrustHtml()`, also make sure that column type is...

I also had issues with the tooltip working in a table. Looking at the HTML I noticed that angular (or the ngx-bootstrap tooltip component?) seems to add some extra attributes...

Looking at the editor, it seems like units are put into a "class" (land, sea, or air) that determines what kind of moves they can make. Land and sea troops...

Can these values be configurable and the logic made more generally applicable? For example if we add new terrain types or want the terrain to have different visibility modifiers in...

What exactly is `our equivalent of x_title.pcx`? Is that a file in our project, or is it a function somewhere?

When we implement this, do we want to allow the user to bind multiple keys to the same action? Like, in the current version of Civ 3, `x` and `j`...