avatar

简单说明

Hello World

今天基本上是把这个博客基本配置的差不多了,呼……

想了一下,blog.echo.cool 作为一个技术分享的博客,主要放一些技术上的文章和想法💡。

至于这个博客,用hexo构建,静态化,也不太需要太多人看,估计也帮不上什么人。所以作为一个日常记录和吐槽的博客 😆

当然,我的想法是主要作为吐槽的地方。

下面简单记录一下hexo现在目前的配置情况
主题用的是 nexmoe
部署方式是 SFTP

记一下今天解决的一个坑 2020.3.7

在hexo的主题中,有一个彩色的标签云 ,莫名其妙启用不了
看了看开发者工具发现
下面这条语句被注释掉了,这就很奇怪

<link rel="stylesheet" href="css/style.css?v=1583596717362">

在laout里面也没找到这句话,于是手动加上了,问题就此解决。

再测试一下粘贴图片

upload successful

upload successful

{
  title: '极客实验室',
  subtitle: '极客实验室',
  description: '一个技术分享和个人记录的地方.',
  author: 'echo.',
  language: 'zh-CN',
  timezone: '',
  url: 'http://blog.wangyuyang.top',
  root: '/',
  permalink: ':year/:month/:day/:title/',
  permalink_defaults: null,
  pretty_urls: { trailing_index: true, trailing_html: true },
  source_dir: 'source',
  public_dir: 'public',
  tag_dir: 'tags',
  archive_dir: 'archives',
  category_dir: 'categories',
  code_dir: 'downloads/code',
  i18n_dir: ':lang',
  skip_render: null,
  new_post_name: ':title.md',
  default_layout: 'post',
  titlecase: false,
  external_link: { enable: true, field: 'site', exclude: '' },
  filename_case: 0,
  render_drafts: false,
  post_asset_folder: true,
  relative_link: true,
  future: true,
  highlight: {
    enable: false,
    auto_detect: false,
    line_number: true,
    tab_replace: '',
    wrap: true,
    hljs: false
  },
  default_category: 'uncategorized',
  category_map: null,
  tag_map: null,
  date_format: 'YYYY-MM-DD',
  time_format: 'HH:mm:ss',
  use_date_for_updated: false,
  per_page: 10,
  pagination_dir: 'page',
  theme: 'nexmoe',
  server: {
    port: 4000,
    log: false,
    ip: undefined,
    compress: false,
    header: true,
    cache: false
  },
  deploy: {
    type: 'sftp',
    host: 'gitlab.echo.cool',
    user: 'root',
    pass: 'Lkq2mapp',
    remotePath: '/www/wwwroot/blog.wangyuyang.top',
    port: 22
  },
  ignore: null,
  meta_generator: true,
  keywords: null,
  index_generator: { per_page: 6, order_by: '-date', path: '' },
  include: null,
  exclude: null,
  search: { path: 'search.xml', field: 'post' },
  permalink_pinyin: { enable: true, separator: '-' },
  postInfo: {
    date: true,
    update: false,
    wordCount: false,
    totalCount: false,
    min2read: false,
    readCount: true
  },
  githubEmojis: {
    enable: true,
    className: 'github-emoji',
    inject: true,
    styles: null,
    customEmojis: null
  },
  archive_generator: { per_page: 10, yearly: true, monthly: true, daily: false },
  category_generator: { per_page: 10 },
  tag_generator: { per_page: 10 },
  marked: {
    gfm: true,
    pedantic: false,
    breaks: true,
    smartLists: true,
    smartypants: true,
    modifyAnchors: '',
    autolink: true,
    sanitizeUrl: false,
    headerIds: true
  }
}
文章作者: echo.
文章链接: http://echo.cool/2020/03/07/%E7%AE%80%E5%8D%95%E8%AF%B4%E6%98%8E/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 极客实验室

评论