Sublimetext3 为什么升华';我的简单循环让EJS变得疯狂了?

Sublimetext3 为什么升华';我的简单循环让EJS变得疯狂了?,sublimetext3,ejs,Sublimetext3,Ejs,我有一个非常简单的EJS页面,其中有一个循环。代码如下: <!DOCTYPE html> <html> <head> <title> <%= title %> </title> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.boots

我有一个非常简单的EJS页面,其中有一个循环。代码如下:

<!DOCTYPE html>
<html>

<head>
    <title>
        <%= title %>
    </title>
    <!-- Latest compiled and minified CSS -->
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
    <link rel='stylesheet' href='/stylesheets/style.css' />
</head>

<body>
    <div class="container">
        <div class="row">
            <div class="col-md-12">
                <h1><%= title %></h1>
                <p>Welcome to
                    <%= title %>
                </p>
                <table>
                    <tbody>
                        <% for(var i=0; i<jobs.length; i++) { %>
                            <li>
                                <%= jobs[i].client.name %>
                            </li>
                            <% } %>
                    </tbody>
                </table>
            </div>
        </div>
    </div>
    <!-- Latest compiled and minified JavaScript -->
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
</body>

</html>

欢迎来到

这是一个崇高的延伸

我删除了扩展并安装了