Draft Example
2022年07月01日
我的作品
90字

This Article is a Draft

This article is currently in a draft state and is not published. Therefore, it will not be visible to the general audience. The content is still a work in progress and may require further editing and review.

When the article is ready for publication, you can update the “draft” field to “false” in the Frontmatter:

import SyntaxHighlighter from "react-syntax-highlighter";
import { docco } from "react-syntax-highlighter/dist/esm/styles/hljs";
const CodeBlock = ({ codestring }) => {
return (
<SyntaxHighlighter language="javascript" style={docco}>
{codeString}
</SyntaxHighlighter>
);
};
# Markdown
# Blogging
# Demo
作者信息:admin
发表于:2022年07月01日
本文标题: Draft Example