久久匠心

publish to branch:blog


  • 首页

  • 标签

  • 分类

  • 归档

  • 关于我

  • 阅读

  • 日志

  • 搜索

next主题之首页阅读全文

发表于 2020-03-31 | 更新于: 2024-05-18 | 分类于 博客 , Hexo
字数统计: 202 字 | 阅读时长 ≈ 1 分钟

参考文章

Hexo之next主题设置首页不显示全文(只显示预览)

通过阅读👆博客,明白next“阅读更多之文章截断”引文设置,重点是themes/next/_config.yml

阅读全文 »

基于hexo+github搭建独立博客

发表于 2020-03-31 | 更新于: 2024-05-18 | 分类于 博客 , 环境安装
字数统计: 1.7k 字 | 阅读时长 ≈ 7 分钟

参考文章

  • 干掉mackeeper
  • hexo+github1
  • 搭建自己的云服务器&解析域名
  • blog=github+hexo+git2
  • 静态博客框架之Hexo & Jekyll
  • 博客搭建可行性方案(jekyll, hexo, Wordpress)
  • 测试Node.js 和npm
  • Hexo Docs
阅读全文 »

Mou语法教程

发表于 2020-03-31 | 更新于: 2024-05-18 | 分类于 Markdown
字数统计: 774 字 | 阅读时长 ≈ 4 分钟

Mou

Mou icon

Overview

Mou, the missing Markdown editor for web developers.

Syntax

阅读全文 »

Markdown标准语法

发表于 2020-03-31 | 更新于: 2024-05-18 | 分类于 Markdown
字数统计: 493 字 | 阅读时长 ≈ 3 分钟

Part Ⅰ. Standard Markdown

Strong and Emphasize
emphasize strong
emphasize strong
Links and Email
Inline:

An example
Reference-style labels (titles are optional):

An example. Then, anywhere
else in the doc, define the link:

Email:

An email example@example.com link.
Images
Inline (titles are optional):

alt text
Reference-style:

alt text

Headers
Setext-style:

Header 1

Header 2

atx-style (closing #’s are optional):

Header 1

Header 2

Header 6

Lists
Ordered, without paragraphs:

  1. Foo
  2. Bar
    Unordered, with paragraphs:
  • A list item.

    With multiple paragraphs.

  • Bar
    You can nest them:

  • Abacus

    • answer
  • Bubbles

    1. bunk
    2. bupkis
      • BELITTLER
    3. burper
  • Cunning
    Blockquotes

    Email-style angle brackets
    are used for blockquotes.

And, they can be nested.

Headers in blockquotes

  • You can quote a list.
  • Etc.
    Inline Code
    <code> spans are delimited
    by backticks.

You can include literal backticks
like `this`.
Block Code
Indent every line of a code block by at least 4 spaces or 1 tab.

This is a normal paragraph.

This is a preformatted
code block.

Horizontal Rules
Three or more dashes or asterisks:




Hard Line Breaks
End a line with two or more spaces:

Roses are red,
Violets are blue.
Part Ⅱ. Extra Syntax

Footnotes
Footnotes work mostly like reference-style links. A footnote is made of two things: a marker in the text that will become a superscript number; a footnote definition that will be placed in a list of footnotes at the end of the document. A footnote looks like this:

That’s some text with a footnote.[^1]

[^1]: And that’s the footnote.
Strikethrough
Wrap with 2 tilde ~ characters:

Strikethrough
Fenced Code Blocks
Start with a line containing 3 or more backtick characters, and ends with the first line with the same number of backtick:

1
2
3
4
5
Fenced code blocks are like Stardard
Markdown’s regular code blocks, except that
they’re not indented and instead rely on a
start and end fence lines to delimit the code
block.

Tables
A simple table looks like this:

First Header Second Header Third Header
Content Cell Content Cell Content Cell
Content Cell Content Cell Content Cell
If you wish, you can add a leading and tailing pipe to each line of the table:
First Header Second Header Third Header
Content Cell Content Cell Content Cell
Content Cell Content Cell Content Cell
Specify alignement for each column by adding colons to separator lines:
First Header Second Header Third Header
Left Center Right
Left Center Right
Anchor
You can also add an anchor for an element such as Headers, then you can link to this anchor anywhere, when you click that link in the Preview view, it’ll auto scroll to the place of the destination anchor.

For example below is a normal h2 Header:

This is an example

Now we add an anchor for it, here we use the name “anchor1” for the anchor, of course you can use any name you want.

This is an example

If you want to link to this anchor, simply write like this:

Click this link in the Preview view will auto scroll to the place of the destination anchor.

Hexo提交源文件,部署博客

发表于 2020-03-31 | 更新于: 2024-05-18 | 分类于 博客 , Hexo
字数统计: 1.4k 字 | 阅读时长 ≈ 7 分钟

保存文章,发布博客
发布博客更新总结
提交源文件 & 部署站点
在新电脑上修改

阅读全文 »

NexT高亮主题

发表于 2020-03-31 | 更新于: 2024-05-18 | 分类于 博客 , Hexo
字数统计: 248 字 | 阅读时长 ≈ 1 分钟

Fixed代码块背景框
hexo发布主题样式未及时更新

阅读全文 »

HexoEditor之快捷键教程

发表于 2020-03-31 | 更新于: 2024-05-18 | 分类于 博客 , 编辑器
字数统计: 867 字 | 阅读时长 ≈ 3 分钟

标题
代码块
粗体
斜体
删除线
链接
图片
引用
有序列表
无序列表
段落
表格

阅读全文 »

HexoEditor之简介

发表于 2020-03-31 | 更新于: 2024-05-18 | 分类于 博客 , 编辑器
字数统计: 37 字 | 阅读时长 ≈ 1 分钟

软件来源:修改自Moeditor
有了它,不必再羡慕MAC下的Mou

开源地址
README - 中文
HexoEditor编辑器讲解
Moeditor编辑器讲解

HexoEditor使用教程

发表于 2020-03-31 | 更新于: 2024-05-18 | 分类于 博客 , 编辑器
字数统计: 24 字 | 阅读时长 ≈ 1 分钟

简介、快捷键、Mou语法

阅读全文 »

new-first

发表于 2020-03-31 | 更新于: 2024-05-18 | 分类于 博客 , Hexo
字数统计: 230 字 | 阅读时长 ≈ 1 分钟

重新整理hexo博客的几个关键点

阅读全文 »
1234

沈大伟

55 日志
12 分类
2 标签
GitHub
© 2024 沈大伟 | Site words total count: 15.9k
由 Hexo 强力驱动
|
主题 — NexT.Muse v5.1.4