跳到主要内容
未列出页
此页面未列出。搜索引擎不会对其索引,只有拥有直接链接的用户才能访问。

以下是该博客程序的 Markdown / LaTex 测试,若不需要请无视

Welcome to AkagiYui's profile!

💻 GitHub Profile Stats

Anurag's github stats

Go Git vsc Windows CentOS Flutter Dart

==abc==

aa
备注

Some content with markdown syntax. Check this api.

Your Title

Some content with markdown syntax.

提示

Some content with markdown syntax. Check this api.

信息

Some content with markdown syntax. Check this api.

警告

Some content with markdown syntax. Check this api.

注意

Some content with markdown syntax. Check this api.

危险

Some content with markdown syntax. Check this api.

Docusaurus green and Facebook blue are my favorite colors.

I can write Markdown alongside my JSX!

This is an apple 🍎

:::tip Use tabs in admonitions

This is an apple 🍎

:::

function helloWorld() {
console.log('Hello, world!');
}
function HighlightSomeText(highlight) {
if (highlight) {
return 'This text is highlighted!';
}

return 'Nothing highlighted';
}

function HighlightMoreText(highlight) {
if (highlight) {
return 'This range is highlighted!';
}

return 'Nothing highlighted';
}
import React from 'react';

function MyComponent(props) {
if (props.isBar) {
return <div>Bar</div>;
}

return <div>Foo</div>;
}

export default MyComponent;
实时编辑器
function Clock(props) {
  const [date, setDate] = useState(new Date());
  useEffect(() => {
    var timerID = setInterval(() => tick(), 1000);

    return function cleanup() {
      clearInterval(timerID);
    };
  });

  function tick() {
    setDate(new Date());
  }

  return (
    <div>
      <h2>It is {date.toLocaleTimeString()}.</h2>
    </div>
  );
}
结果
Loading...