Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Angular js - Return a string with HTML characters like  

I made a filter just to add an antislash after a value if another given value is not empty and I would like to separate this antislash from the rest of the string with   . Actually the filter itself work but right the string " " as is in the page.

angular.module('ngMod', []).
filter('antislash', function() {
  return function(input) {
    if( input==null || input.length === 0 ){
      return null;
    }else{  
      return ' / '; 
    }
  }
});

It displays in the page :  / 

Does exist an html filter or something equivalent ?

like image 350
svassr Avatar asked Sep 14 '12 19:09

svassr


1 Answers

It works by giving the unicode value for  .

angular.module('ngMod', []).
filter('antislash', function() {
  return function(input) {
    if( input==null || input.length === 0 ){
      return null;
    }else{  
      return '\u00A0/\u00A0'; 
    }
  }
});

You can also use $sanitize with ng-bind-html and ng-bind-html-unsafe to output html snipets.

like image 132
svassr Avatar answered Nov 03 '22 02:11

svassr