【问题标题】:How to fix errors in HTML file on eclipse?如何修复 Eclipse 上的 HTML 文件中的错误?
【发布时间】:2016-08-19 19:19:26
【问题描述】:

我正在 Eclipse Java EE 中构建一个动态 Web 项目,并添加了 CodeMirror 编辑器的外部文件。我尝试使用 CodeMirror 的外部文件,效果很好,但是当我在 WebContent 下添加 CodeMirror 编辑器时,index.html 中出现 3 错误。

代码:

    #types
    immutable Color{T<:Number}
      r::T
      g::T
      b::T
    end

The error at the second line:

> Multiple annotations found at this line :

>   - Start tag (<:Number>) not closed properly, expected '>'.
>   - Invalid location of text (}) in tag (<:Number>).
>   - Unknown tag (:Number).

The external files of CodeMirror work well but only when I add them to eclipse, it gives these errors inside the external files. How could I fix them?

edit:
this is all code :



       <!doctype html>

    <title>CodeMirror: Julia mode</title>
    <meta charset="utf-8"/>
    <link rel=stylesheet href="../../doc/docs.css">

    <link rel="stylesheet" href="../../lib/codemirror.css">
    <script src="../../lib/codemirror.js"></script>
    <script src="julia.js"></script>
    <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
    <div id=nav>
      <a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a>

      <ul>
        <li><a href="../../index.html">Home</a>
        <li><a href="../../doc/manual.html">Manual</a>
        <li><a href="https://github.com/codemirror/codemirror">Code</a>
      </ul>
      <ul>
        <li><a href="../index.html">Language modes</a>
        <li><a class=active href="#">Julia</a>
      </ul>
    </div>

    <article>
    <h2>Julia mode</h2>

        <div><textarea id="code" name="code">
    #numbers
    1234
    1234im
    .234
    .234im
    2.23im
    2.3f3
    23e2
    0x234

    #strings
    'a'
    "asdf"
    r"regex"
    b"bytestring"

    """
    multiline string
    """

    #identifiers
    a
    as123
    function_name!

    #unicode identifiers
    # a = x\ddot
    a⃗ = ẍ
    # a = v\dot
    a⃗ = v̇
    #F\vec = m \cdotp a\vec
    F⃗ = m·a⃗

    #literal identifier multiples
    3x
    4[1, 2, 3]

    #dicts and indexing
    x=[1, 2, 3]
    x[end-1]
    x={"julia"=>"language of technical computing"}


    #exception handling
    try
      f()
    catch
      @printf "Error"
    finally
      g()
    end

    #types
    immutable Color{T<:Number}
      r::T
      g::T
      b::T
    end

    #functions
    function change!(x::Vector{Float64})
      for i = 1:length(x)
        x[i] *= 2
      end
    end

    #function invocation
    f('b', (2, 3)...)

    #operators
    |=
    &=
    ^=
    \-
    %=
    *=
    +=
    -=
    <=
    >=
    !=
    ==
    %
    *
    +
    -
    <
    >
    !
    =
    |
    &
    ^
    \
    ?
    ~
    :
    $
    <:
    .<
    .>
    <<
    <<=
    >>
    >>>>
    >>=
    >>>=
    <<=
    <<<=
    .<=
    .>=
    .==
    ->
    //
    in
    ...
    //
    :=
    .//=
    .*=
    ./=
    .^=
    .%=
    .+=
    .-=
    \=
    \\=
    ||
    ===
    &&
    |=
    .|=
    <:
    >:
    |>
    <|
    ::
    x ? y : z

    #macros
    @spawnat 2 1+1
    @eval(:x)

    #keywords and operators
    if else elseif while for
     begin let end do
    try catch finally return break continue
    global local const 
    export import importall using
    function macro module baremodule 
    type immutable quote
    true false enumerate


        </textarea></div>
        <script>
          var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
            mode: {name: "julia",
                   },
            lineNumbers: true,
            indentUnit: 4,
            matchBrackets: true
          });
        </script>

        <p><strong>MIME types defined:</strong> <code>text/x-julia</code>.</p>
    </article>

编辑: the first error he said processing instruction not closed

the second error

错误2中的所有指令:

cancast:{nw:x$"";if[not x in"BXCS";nw:(min 0#;max 0#;::)@\:nw];$[not any nw in x$(11&count y)#y;$[11<count y;not any nw in x$y;1b];0b]}

【问题讨论】:

  • 只需将相关代码添加到您的问题中,而不是屏幕截图。尝试在“
  • 我把它放在 {T\<:number>
  • 有任何添加到 Eclipse 以跳过这些错误?所有文件都可以正常工作......但我不知道为什么 Eclipse 会出错......
  • 是嵌入在codemirror文件中的文件index.html的名称,但是eclipse会出错
  • 我将编辑我的问题并将所有代码嵌入 index.html @Ephi

标签: java html eclipse


【解决方案1】:

''等一些字符用于定义HTML标签等,因此将被视为代码。

但是,如果您想将 '' 写为 text,则必须为这些字符使用 HTML 代码。例如,'&lt;, '>' 将变为 &amp;gt;。通过将这些字符替换为相应的代码,它们将不会被识别为 HTML 纯代码。

http://www.ascii.cl/htmlcodes.htm,您将找到这些代码的更完整列表。这个原则被称为“HTML 转义”。

【讨论】:

  • 好的,我会看到你的链接并尝试解决2错误,谢谢你的帮助@Ephi
  • 可能有工具可以自动完成,尝试搜索一个
  • 好的,非常感谢
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2023-01-29
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2020-09-16
  • 1970-01-01
相关资源
最近更新 更多