소스 검색

fixed macro replacement

tags/1.0.5
Robin Thoni 8 년 전
부모
커밋
2c42657b82
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      app/controllers/home.controller.js

+ 1
- 1
app/controllers/home.controller.js 파일 보기

@@ -37,7 +37,7 @@ angular.module('app')
37 37
                     .trim();
38 38
                 $scope.macros.forEach(function(macro)
39 39
                 {
40
-                    var regex = macro.latex.match(/[a-zA-Z0-9]$/) != null ? "([^a-zA-Z0-9])" : "";
40
+                    var regex = macro.latex.match(/[a-zA-Z0-9]$/) != null ? "([^a-zA-Z0-9])" : "()";
41 41
                     text = text.replace(new RegExp($scope.escapeRegExp(macro.latex) + regex, "g"), function($1, $2)
42 42
                     {
43 43
                         return macro.html + $2;

Loading…
취소
저장