willin / hexo-wordcount

A Word Count Plugin for Hexo
https://npmjs.org/package/hexo-wordcount
181 stars 22 forks source link

bug #5

Closed Allkoman closed 6 years ago

Allkoman commented 7 years ago

我在这里使用了wordcount插件: http://minichao.me/2017/04/17/Hexo-plugins-Issues/ 这里可以看到字数显示存在bug: http://minichao.me/2017/04/18/codecademy/ 

willin commented 7 years ago

? show me the code

Allkoman commented 7 years ago
<% if ((post.original != false && !is_page() && theme.copyright) || post.original){ %>
    <div class="copyright">
        <p><span><%= __('copyright_info.title') %>:</span><a href="<%- url_for(post.path) %>"><%= post.title %></a></p>
        <p><span><%= __('copyright_info.author') %>:</span><a href="/" title="<%= __('tooltip.back2home') %>"><%=theme.author%></a></p>
        <p><span class="post-count">文章字数:</span><%= wordcount(post.content) %></p> //添加本行
        <p><span><%= __('copyright_info.date') %>:</span><%= post.date.format("YYYY-MM-DD, HH:mm:ss") %></p>
        <p><span><%= __('copyright_info.updated') %>:</span><%= post.updated.format("YYYY-MM-DD, HH:mm:ss") %></p>
        <p>
            <span><%= __('copyright_info.url') %>:</span><a class="post-url" href="<%- url_for(post.path) %>" title="<%= post.title %>"><%= post.permalink %></a>
            <span class="copy-path" data-clipboard-text="<%= __('copyright_info.from') %> <%= post.permalink %>  <%= __('copyright_info.by') %> <%=theme.author%>" title="<%= __('tooltip.copyPath') %>"><i class="fa fa-clipboard"></i></span>
            <script> var clipboard = new Clipboard('.copy-path'); </script>
        </p>
        <p>
            <span><%= __('copyright_info.license') %>:</span><i class="fa fa-creative-commons"></i> <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/" title="CC BY-NC-SA 4.0 International" target = "_blank">"<%= __('copyright_info.cc') %>"</a> <%= __('copyright_info.notice') %>
        </p>
    </div>
<% } %>

<% if (post.prev || post.next){ %>
    <nav id="article-nav">
        <% if (post.prev){ %>
            <div id="article-nav-newer" class="article-nav-title">
                <a href="<%- url_for(post.prev.path) %>">
                    <%= post.prev.title %>
                </a>
            </div>
        <% } %>
        <% if (post.next){ %>
            <div id="article-nav-older" class="article-nav-title">
                <a href="<%- url_for(post.next.path) %>">
                    <%= post.next.title %>
                </a>
            </div>
        <% } %>
    </nav>
<% } %>

这是我的使用方法,但是在我的博客中有一些页面无法显示正常的数据

willin commented 7 years ago

markdown 文章源码

Allkoman commented 7 years ago

title: CodeCademy toc: 1 date: 2017-04-18 15:30:56 tags:

Learn HTML & CSS : Part 1 (1)

What is HTML?

HTML is the language used to create the web pages you visit everyday. It provides a logical way to structure content for web pages.


!DOCTYPE

A web browser must know what language a document is written in before they can process the contents of the document.

<!DOCTYPE html>

Note: If you don't use the doctype declaration, your HTML code will likely still work, however, it's risky. Right now, the browser will correctly assume that you are using HTML5, as HTML5 is the current standard. In the future, however, a new standard will override HTML5. Future browsers may assume you're using a different, newer standard, in which case your document will be interpreted incorrectly. To make sure your document is forever interpreted correctly, always include <!DOCTYPE html> at the very beginning of your HTML documents.


Preparing for HTML

<!DOCTYPE html>
<html>

</html>

HTML Anatomy

In the following example, there is one paragraph element, made up of one opening tag (<p>) and one closing tag (</p>): <p>Hello there!</p>

THe Head

<!DOCTYPE html>
<html>
  <head>

  </head>
</html>

Page Title

<!DOCTYPE html>
<html>
  <head>
    <title>My Coding Journal</title>
  </head>
</html>

The Body

<!DOCTYPE html>
<html>
  <head>
    <title>I'm Learning To Code!</title>
  </head>
  <body>

  </body>
</html>

Note: The rest of the course will use code examples like the one above. To save space, however, code examples will avoid including common elements like the declaration, head, and so on. Unless otherwise specified, you can assume that the code in the example code blocks belongs directly within the HTML file's body.


Review : Structure

Congratulations on completing the first unit of HTML & CSS! You are well on your way to becoming a skilled web developer. Let's review what you've learned so far: The <!DOCTYPE html> declaration should always be the first line of code in your HTML files. The element will contain all of your HTML code. Information about the web page, like the title, belongs within the of the page. You can add a title to your web page by using the element, inside of the head. Code for visible HTML content will be placed inside of the <body> element. What you learned in this lesson constitutes the required setup for all HTML files. The rest of the course will teach you more about how to add content using HTML and how to style that content using CSS!</p> </blockquote> <hr /> <h2>Learn HTML & CSS : Part 1 (2)</h2> <h3>Visible Content</h3> <ul> <li>In the last unit, you learned about the minimum amount of HTML code required to successfully structure a web page, sometimes referred to as "boilerplate code."</li> <li>We added a declaration, a head, a title, and a body, but we still need content that the web browser can display. In this unit, we'll learn how to use some of the most common HTML elements that add content to web pages.</li> <li>Keep in mind that HTML was originally created to markup, or present, text. The first few units of this course will focus solely on how HTML can be used to mark up text. Later in the course, we'll dive deeper into more advanced styling techniques using CSS.</li> <li>Let's get started!</li> </ul> <hr /> <h3>Headings</h3> <ul> <li>Headings in HTML can be likened to headings in other types of media. For example, in newspapers, large headings are typically used to capture a reader's attention. Other times, headings are used to describe content, like the title of a movie or an educational article.</li> <li>HTML follows a similar pattern. In HTML, there are six different headings, or heading elements. Headings can be used for a variety of purposes, like titling sections, articles, or other forms of content.</li> <li>The following is the list of heading elements available in HTML. They are ordered from largest to smallest in size.</li> <li><code><h1></code> - used for main headings, all other smaller headings are used for subheadings. `<h2> <h3> <h4> <h5> <h6>` The following example code uses a headline intended to capture a reader's attention. It uses the largest heading available, the main heading element:</li> </ul> <pre><code><h1>BREAKING NEWS</h1></code></pre> <hr /> <h3>Paragraphs</h3> <ul> <li>Often times, headings are meant to emphasize or enlarge only a few words.</li> <li>If you want to add content in paragraph format, you can add a paragraph using the paragraph element <code><p></code>.</li> </ul> <pre><code><p>The Nile River is the longest river in the world, measuring over 6,850 kilometers long (approximately 4,260 miles). It flows through eleven countries, including Tanzania, Uganda, Rwanda, Burundi, Congo-Kinshasa, Kenya, Ethiopia, Eritrea, South Sudan, Sudan, and Egypt.</p></code></pre> <ul> <li>Paragraphs are great for expanding the amount of content (text) on your web page. As you begin to add more text to your web page, however, keep in mind that large amounts of text in paragraph format can overwhelm web page visitors. For example, if multiple paragraphs on your web page each contain large amounts of text, your web page could become difficult to consume.</li> </ul> <hr /> <h3>Unordered Lists</h3> <ul> <li>Often times, it's better to display certain types of content in an easy-to-read list.</li> <li>In HTML, you can use the unordered list for text you decide to format in bullet points. An unordered list outlines individual list items with a bullet point. You've probably used an unordered list when writing down a grocery list or school supplies list.</li> <li>To create a unordered list using HTML, you can use the <code><ul></code> element. The <code><ul></code> element, however, cannot hold raw text and cannot automatically format raw text with bullet points. Individual list items must be added to the unordered list using the <code><li></code> element.</li> </ul> <pre><code><ul> <li>Limes</li> <li>Tortillas</li> <li>Chicken</li> </ul></code></pre> <ul> <li>In the example above, the list was created using the <code><ul></code> element and all individual list items were added using <code><li></code> elements.</li> </ul> <hr /> <h3>Ordered Lists</h3> <ul> <li>Great job! Some lists, however, will require a bit more structure. HTML provides the ordered list when you need the extra ordering that unordered lists don't provide.</li> <li>Ordered lists are like unordered lists, except that each list item is numbered. You can create the ordered list with the <code><ol></code> element and then add individual list items to the list using <code><li></code> elements.</li> </ul> <pre><code class="language-<ol>"> <li>Preheat the oven to 350 degrees.</li> <li>Mix whole wheat flour, baking soda, and salt.</li> <li>Cream the butter, sugar in separate bowl.</li> <li>Add eggs and vanilla extract to bowl.</li></code></pre> <hr /> <h3>Links</h3> <ul> <li>You're off to a great start! So far, you've learned how to add headings, paragraphs, and lists to a web page. We wouldn't be taking advantage of the full power of HTML (and the Internet), however, if we didn't link to other web pages.</li> <li>You can add links to a web page by adding an anchor element <code><a></code> and including the text of the link in between the opening and closing tags.</li> </ul> <pre><code><a>This Is A Link To Wikipedia</a></code></pre> <ul> <li>Wait a minute! Technically, the link in the example above is incomplete. How exactly is the link above supposed to work if there is no URL that will lead users to the actual Wikipedia page?</li> <li>The anchor element in the example above is incomplete without the href attribute.</li> <li>Attributes provide even more information about an element's content. They live directly inside of the opening tag of an element. Attributes are made up of the following two parts:</li> <li>The name of the attribute.</li> <li>The value of the attribute.</li> <li>For anchor elements, the name of the attribute is href and its value must be set to the URL of the page you'd like the user to visit.</li> </ul> <pre><code><a href="https://www.wikipedia.org/">This Is A Link To Wikipedia</a></code></pre> <ul> <li>In the example above, the <code>href</code> attribute has been set to the value of the correct URL <a href="https://www.wikipedia.org/">https://www.wikipedia.org/</a>. The example now shows the correct use of an anchor element.</li> </ul> <blockquote> <p>Note: When reading technical documentation, you may come across the term hyperlink. Not to worry, this is simply the technical term for link and, often times, these terms are used interchangeably</p> </blockquote> <hr /> <h3>More Link Attributes</h3> <ul> <li>Have you ever clicked on a link and observed the resulting web page open in a new browser window? If so, you can thank the anchor element's target attribute.</li> <li>The target attribute specifies that a link should open in a new window. Why is it beneficial to open links in a new window?</li> <li>It's possible that one or more links on your web page link to an entirely different website. In that case, you may want users to read the linked website, but hope that they return to your web page. This is exactly when the target attribute is useful!</li> <li>For a link to open in a new window, the target attribute requires a value of _blank. The target attribute can be added directly to the opening tag of the anchor element, just like the href attribute.</li> </ul> <pre><code><a href="https://en.wikipedia.org/wiki/Brown_bear" target="_blank">The Brown Bear</a></code></pre> <ul> <li>In the example above, the link would read The Brown Bear and open up the relevant Wikipedia page in a new window.</li> </ul> <blockquote> <p>Note: In this exercise, we've used the terminology "open in a new window." It's highly likely that you are using a modern browser that opens up websites in new tabs, rather than new windows. Before the advent of browsers with tabs, additional browser windows had to be opened to view more websites. The target attribute, when used in modern browsers, will open new websites in a new tab.</p> </blockquote> <hr /> <h3>Images</h3> <ul> <li>All of the elements you've learned about so far (headings, paragraphs, lists, and links) all share one thing in common: they're composed entirely of text! What if you want to add content to your web page that isn't composed of text, like images?</li> <li>The <code><img></code> element lets you add images to a web page. This element is special because it does not have a closing tag, it only has an opening tag. This is because the <code><img></code> element is a self-closing element.</li> </ul> <pre><code><img src="https://www.example.com/picture.jpg" /></code></pre> <blockquote> <p>Note that the <code><img></code> element has a required attribute called src, which is similar to the href attribute in links. In this case, the value of src must be the URL of the image. Also note that the end of the <code><img></code> element has a forward slash /. This is required for a self-closing element.</p> </blockquote> <hr /> <h3>ALt</h3> <ul> <li>Part of being an exceptional web developer is making your site accessible to users of all backgrounds. Specifically, visually impaired users require more support from your web page so that they can experience the content on your page.</li> <li>HTML helps support visually impaired users with the alt attribute.</li> <li>The alt attribute is applied specifically to the <code><img></code> element. The value of alt should be a description of the image.</li> </ul> <pre><code><img src="#" alt="A field of yellow sunflowers" /></code></pre> <ul> <li>The alt attributes also serves the following purposes:</li> </ul> <blockquote> <p>If an image fails to load on a web page, a user can mouse over the area originally intended for the image and read a brief description of the image. This is made possible by the description you provide in the alt attribute. Visually impaired users often browse the web with the aid of of screen reading software. When you include the alt attribute, the screen reading software can read the image's description outloud to the visually impaired user. Note: If the image on the web page is not one that conveys any meaningful information to a user (visually impaired or otherwise), the alt attribute should not be used.</p> </blockquote> <hr /> <h3>Linking At Will</h3> <ul> <li>You've probably visited websites where not all links were made up of text. Maybe the links you clicked on were images, or some other form of content.</li> <li>So far, we've added links that were made up of only text, like the following:</li> </ul> <pre><code><a href="https://en.wikipedia.org/wiki/Opuntia" target="_blank">Prickly Pear</a></code></pre> <ul> <li>Text-only links, however, would significantly decrease your flexibility as a web developer!</li> <li>Thankfully, HTML allows you to turn nearly any element into a link by wrapping that element with an anchor element. With this technique, it's possible to turn images into links by simply wrapping the <code><img></code> element with an <code><a></code> element.</li> </ul> <pre><code><a href="https://en.wikipedia.org/wiki/Opuntia" target="_blank"><img src="#" alt="A red prickly pear fruit"/></a></code></pre> <p>In the example above, an image of a prickly pear has been turned into a link by wrapping the outside of the <code><img></code> element with an <code><a></code> element.</p> <hr /> <h3>White Space</h3> <ul> <li>It's important to understand that the formatting of the code in index.html will not affect the positioning of the elements within the browser.</li> <li>For example, if you wanted to increase the space between a paragraph and an image on your web page, you would not be able to accomplish this by simply adding more spacing between the paragraph element and image element within index.html. This is because the browser ignores whitespace present in HTML files like index.html.</li> <li>On the other hand, using whitespace in HTML files is important so that your code is easy to read and follow.</li> <li>For example, the following code is difficult to read and understand:</li> </ul> <pre><code><html><head></head> <body><h1>Hello!</h1><p>This is a paragraph!</body> </html></code></pre> <ul> <li>The following code, however, uses spacing effectively to make it easier to read:</li> </ul> <pre><code><html> <head> <title>My Web Page</title> </head> <body> <h1>Hello!</h1> <p>This is a paragraph!</p> </body> </html></code></pre> <hr /> <h3>Line Breaks</h3> <ul> <li> <p>You saw how modifying the spacing between code in an HTML file doesn't affect the positioning of elements in the browser. If you are interested in modifying the spacing in the browser, you can use HTML's line break element: <code><br /></code>.</p> </li> <li> <p>The line break element is one self-closing tag. You can use it anywhere within your HTML code and a line break will be shown in the browser.</p> </li> <li> <p>Shall I compare thee to a summer's day?<code><br /></code>Thou art more lovely and more temperate</p> </li> <li> <p>The code in the example above will result in an output that looks like the following:</p> </li> <li> <p>Shall I compare thee to a summer's day?</p> </li> <li> <p>Thou art more lovely and more temperate</p> </li> </ul> <blockquote> <p>Note: Line breaks are not the standard way of manipulating the positioning of HTML elements, but it's likely that you'll come across them every now and then. In later units, you'll learn more advanced techniques for positioning HTML elements.</p> </blockquote> <hr /> <h3>Indentation</h3> <ul> <li>Whitespace makes code easier to read by increasing (or decreasing) the spacing between lines of code. To make the structure of code easier to read, web developers often use indentation.</li> <li>The World Wide Web Consortium (W3C) is responsible for maintaining the style standards of HTML. At the time of writing, the W3C recommends 2 spaces of indentation when writing HTML code. Indentation is intended for elements nested within other elements.</li> </ul> <pre><code><ul> <li>Violin</li> <li>Viola</li> <li>Cello</li> <li>Bass</li> <ul></code></pre> <ul> <li>In the example above, the list items are indented with two spaces. The spaces are inserted using the spacebar on your keyboard. Unless your text editor has been configured properly, the "TAB" key on your keyboard should not be used for indentation.</li> </ul> <hr /> <h3>Comments</h3> <ul> <li>HTML files also allow you to add comments to your code.</li> <li>Comments begin with <code><!-- and end with --></code>. Any characters in between will be treated as a comment.</li> </ul> <pre><code><!-- This is a comment that the browser will not display. --></code></pre> <ul> <li>Including comments in your code is helpful for many reasons:</li> <li>They help you (and others) understand your code if you decide to come back and review it at a much later date.</li> <li>They allow you to experiment with new code, without having to delete old code.</li> </ul> <pre><code><!-- Favorite Films Section --> <p>The following is a list of my favorite films:</p></code></pre> <ul> <li>In the example above, the comment is used to denote that the following text makes up a particular section of the page.</li> </ul> <pre><code><!-- <a href="#" target="_blank>Codecademy</a> --></code></pre> <ul> <li>In the example above, a valid HTML element (an anchor element) has been "commented out." This practice is useful when you want to experiment with new code without having to delete old code.</li> </ul> <hr /> <h3>Review:Common Elements</h3> <ul> <li>Congratulations on completing the second unit of HTML & CSS! In this unit, you learned how to add content to a web page using some of the most common HTML elements.</li> <li>Let's review what you've learned so far:</li> <li>You can add headings of different sizes using the different headings elements: <code><h1</code>> through <code><h6></code>.</li> <li>Paragraphs are added with the <code><p></code> element.</li> <li>Unordered lists are created with the <code><ul></code> element and list items are added using the <code><li></code> element.</li> <li>Ordered lists are created with the <code><ol></code> element and list items are added using the <code><li></code> element.</li> <li>You can add links to your web page using the <code><a></code> element - don't forget the href attribute!</li> <li>Images can be added with the <code><img></code> element - don't forget the src attribute!</li> <li>Images help support visually impaired users when <code><img></code> elements include the alt attribute.</li> <li>You can turn anything into a link by wrapping it with an <code><a></code> element.</li> <li>White space in the HTML file does not affect the positioning of elements in the browser.</li> <li>The W3C recommends 2 spaces of indentation for nested HTML elements.</li> <li>Comments are used to take notes inside of an HTML file. You can add a comment with <code><!-- This is a comment --></code>.</li> </ul> <hr /> <h2>Learn HTML & CSS : Part 1 (3)</h2> <h3>What is CSS?</h3> <ul> <li>So far, you've learned about the fundamentals of HTML, including the basic structure required to set up HTML files, as well as the common HTML elements used to add content to a web page.</li> <li>Unfortunately, the HTML elements that we've used to add content to a web page have resulted in fairly bland results in the browser. For example, it appears that all content seems to be the same color, have the same font, and offer no direct control over the size of the font (apart from the six different heading options). How can we make our HTML more visually appealing?</li> <li>CSS, or Cascading Style Sheets, is a language that web developers use to style the HTML content on a web page. If you're interested in modifying colors, font types, font sizes, shadows, images, element positioning, and more, CSS is the tool for the job!</li> <li>In this unit, you'll first learn how to incorporate CSS so that you can style content. You'll also learn about CSS's basic structure and learn how to use its syntax. In later units, we'll explore in detail exactly how to change color, font options, and much more.</li> <li>Let's begin!</li> </ul> <hr /> <h3>sytle</h3> <ul> <li>Although CSS is a different language than HTML, it's possible to write CSS code directly within an HTML file. This is possible because of the <code><style></code> element.</li> </ul> <p>The <code><style></code> element allows you to write CSS code between its opening and closing tags. To use the <code><style></code> element, it must be placed inside of the head.</p> <pre><code><head> <style> </style> </head></code></pre> <p>Once <code><style></code> is placed in the web page's head, we can begin writing CSS code.</p> <pre><code><head> <style> h2 { font-family: Arial; } </style> </head></code></pre> <ul> <li>Don't worry about the CSS code in the example above just yet, you will learn more about the details of CSS code in later lessons.</li> </ul> <hr /> <h3>Structure vs Style</h3> <ul> <li>Although the <code><style></code> element allows you to write CSS code within HTML files, this mixture of HTML and CSS can result in code that is difficult to read and maintain.</li> <li>It's common for developers to add substantial amounts of custom CSS styling to a web page. When all of that CSS code is placed within a <code><style></code> element in an HTML file, you risk the following two things:</li> <li>Creating a large HTML file that is difficult to read and maintain (by you and other developers). Overall, this can result in an inefficient workflow. Maintaining a clear distinction between web page structure (HTML) and web page styling (CSS).</li> </ul> <hr /> <h3>The .css file</h3> <ul> <li>Fortunately, the following solution will help you avoid creating large HTML files that mix in CSS code: a CSS file!</li> <li>HTML files are meant to contain only HTML code. Similarly, CSS files are meant to contain only CSS code. You can create a CSS file by using the .css file name extension, like so: style.css</li> <li>With a CSS file, you can write all the CSS code needed to style a page without having to sacrifice the readability and maintainability of your HTML file.</li> </ul> <h3>Linking the CSS File</h3> <ul> <li>Perfect! We successfully separated structure (HTML) from styling (CSS), but why does the web page look continue to look so bland? The CSS code now lives in a separate CSS file called style.css — shouldn't that have worked without issue?</li> <li>Not exactly. When HTML and CSS code are in separate files, the HTML file must know exactly where the CSS code is kept, otherwise, the styling can't be applied the web page. In order to apply the styling to the web page, we'll have to link the HTML file and the CSS file together.</li> <li>You can use the<code><link></code> element to link the HTML and CSS files together. The <code><link></code> element must be placed within the head of the HTML file. It is a self-closing tag and requires the following three attributes:</li> <li>href - like the anchor element, the value of this attribute must be the address, or path, to the CSS file.</li> <li>type - this attribute describes the type of document that you are linking to (in this case, a CSS file). The value of this attribute should be set to text/css.</li> <li>rel - this attribute describes the relationship between the HTML file and the CSS file. Because you are linking to a stylesheet, the value should be set to stylesheet.</li> <li>When linking an HTML file and a CSS file together, the <link> element will look like the following:</li> </ul> <pre><code><link href="https://www.codecademy.com/stylesheets/style.css" type="text/css" rel="stylesheet"></code></pre> <p>Note that in the example above the path to the stylesheet is a URL:</p> <ul> <li><a href="https://www.codecademy.com/stylesheets/style.css">https://www.codecademy.com/stylesheets/style.css</a></li> <li>Specifying the path to the stylesheet using a URL is one way of linking a stylesheet.</li> <li>If the CSS file is stored in the same directory as your HTML file, then you can specify a relative path instead of a URL, like so:</li> </ul> <pre><code><link href="/style.css" type="text/css" rel="stylesheet"></code></pre> <ul> <li>Using a relative path is very common way of linking a stylesheet.</li> </ul> <hr /> <h3>Review:CSS Setup</h3> <ul> <li>Great job! You learned how to link an HTML file and a CSS file together.</li> <li>Let's review what you've learned so far:</li> <li>HTML and CSS are kept in separate files in order to keep code maintainable and readable, as well as keep structure separate from styling.</li> <li>The <code><style></code> element allows you to write CSS code within an HTML file.</li> <li>A CSS stylesheet can be linked to an HTML file using the <code><link></code> element, which requires three attributes:</li> <li>href - set equal to the path of the CSS file.</li> <li>type - set equal to text/css.</li> <li>rel - set equal to stylesheet.</li> <li>In this lesson, you learned about the two different places in which you can write CSS code, but you didn't write any CSS code at all.</li> <li>In the next lesson, you'll learn about the basic structure and syntax of CSS so that you can start using CSS on your own.</li> </ul> <hr /> </div> </div> <div class="comment"> <div class="user"> <a rel="noreferrer nofollow" target="_blank" href="https://github.com/willin"><img src="https://avatars.githubusercontent.com/u/1890238?v=4" />willin</a> commented <strong> 7 years ago</strong> </div> <div class="markdown-body"> <p>md 有多处语法不规范 会导致生成的 html 也不规范。</p> <p>w3c 检测: <a href="https://validator.w3.org/nu/?doc=http%3A%2F%2Fminichao.me%2F2017%2F04%2F18%2Fcodecademy%2F">https://validator.w3.org/nu/?doc=http%3A%2F%2Fminichao.me%2F2017%2F04%2F18%2Fcodecademy%2F</a> </p> <p>你的站点主题也是不规范的</p> </div> </div> <div class="page-bar-simple"> </div> <div class="footer"> <ul class="body"> <li>© <script> document.write(new Date().getFullYear()) </script> Githubissues.</li> <li>Githubissues is a development platform for aggregating issues.</li> </ul> </div> <script src="https://cdn.jsdelivr.net/npm/jquery@3.5.1/dist/jquery.min.js"></script> <script src="/githubissues/assets/js.js"></script> <script src="/githubissues/assets/markdown.js"></script> <script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.4.0/build/highlight.min.js"></script> <script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.4.0/build/languages/go.min.js"></script> <script> hljs.highlightAll(); </script> </body> </html>