gpt4 book ai didi

javascript - 无法让 higlightjs 高亮显示 HTML 代码

转载 作者:行者123 更新时间:2023-11-30 14:56:31 24 4
gpt4 key购买 nike

我在这里做了一个小文件

<!DOCTYPE html>
<html>
<head>
<title>highlightjs</title>

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/darcula.min.css">

</head>
<body>

<pre>
<code class="php">
namespace App\Http\Controllers;

use Illuminate\Http\Request;
use DB;
use Session;

class ProductController extends Controller
{
/**
* Show the application dashboard.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
$posts = DB::table("posts")->get();
return view('posts',compact('posts'));
}

/**
* Show the application dashboard.
*
* @return \Illuminate\Http\Response
*/
public function destroy($id)
{
DB::table("posts")->delete($id);
Session::put('success', 'Your Record Deleted Successfully.');
return redirect()->route('posts');
}
}
</code>
</pre>

<pre>
<code class="xml hljs">

<body>
<p class="title" id='title'>Title</p>

<h2>Why is this HTML code not highlighted?</h2>

&ltp&gtTeeeeest&lt/p&gt
</body>

</code>
</pre>

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
</body>
</html>

我正在尝试突出显示此网站上的 HTML 代码:

DEMO

而且它不起作用。他可能正在做我没有做的事情。但是什么??我的 PHP 正确突出显示。如何也突出显示 HTML 代码?

最佳答案

< 替换 < 字符,用 > 替换 > 代码标签内的字符。

关于javascript - 无法让 higlightjs 高亮显示 HTML 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47186250/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com