A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

简介

Pelican用Python编写的静态站点生成器。亮点:

使用reStructuredText或Markdown格式直接用编辑器编写内容
简单的CLI工具来(重新)生成站点
易于与分布式版本控制系统和Web对接
完全静态输出,可在任何地方托管
Pelican 4目前支持:

文章(例如博客文章)和页面(例如,“关于”,“项目”,“联系方式”)
评论,通过外部服务(Disqus)。如果您希望更好地控制评论,也可自托管评论是另一种选择。
主题支持(使用Jinja2模板创建主题)
以多种语言发表文章
Atom / RSS feeds
代码高亮
从WordPress,Dotclear或RSS导入
与外部工具集成:Twitter,Google Analytics等(可选)
借助内容缓存和选择性输出写入,可以快速重建
为什么叫“Pelican”这个名字?

“Pelican”是calepin的字谜,在法语中意为“笔记本”。 ;)
安装

pip install pelican markdown
创建项目

mkdir -p ~/projects/yoursite
cd ~/projects/yoursite
pelican-quickstart
创建文章

~/projects/yoursite/content/keyboard-review.md

Title: My First Review
Date: 2010-12-03 10:20
Category: Review
Following is a review of my favorite mechanical keyboard.


pelican content
预览


github部署

比如 https://github.com/china-testing/china-testing.github.io ,这个仓库名要求为 username.github.io 。

上传代码,就可以访问你的网站了。

#!/usr/bin/env bash
DATE=$(date +%Y%m%d)
cd /home/andrew/code/yoursite
rm -rf output/*
pelican content
cd /home/andrew/code/china-testing.github.io
git rm -rf *
cp -rf /home/andrew/code/yoursite/output/* .
git add *
git commit -m $DATE
git push
---------------------
转载,仅作分享,侵删
原文:https://blog.csdn.net/qq_42156420/article/details/86063566


1 个回复

倒序浏览
奈斯,加油
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马