文章预览
虽然市面上有很多的免费博客或者说个人网站方案,不过不是广告,就是国内无法访问。 其实本人一直都比较喜欢blogger的,不过国内真的不好用啊。 最近几年好多程序员已经开始将github pages当作博客用了,github pages真的是很好的福利没错,不过有点我不习惯的是每次都要自己构建链接才行,不然的话就需要用jekyll主题定义后可以,…
文章
标签
喜欢
共找到 13 篇相关文章
文章预览
虽然市面上有很多的免费博客或者说个人网站方案,不过不是广告,就是国内无法访问。 其实本人一直都比较喜欢blogger的,不过国内真的不好用啊。 最近几年好多程序员已经开始将github pages当作博客用了,github pages真的是很好的福利没错,不过有点我不习惯的是每次都要自己构建链接才行,不然的话就需要用jekyll主题定义后可以,…
文章预览
markdown转换成纯文本: ``` from bs4 import BeautifulSoup from markdown import markdown def markdown_to_text(markdown_string): """ Converts a markdown string to plaintext """ #…
文章预览
Markdown is one of the most widely used formats.Markdown is a lightweight markup language that makes writing formatted content easy.It uses very easy-to-like syntax and is used by…
文章预览
The img element is a useful element in HTML. Markdown can add images using the [alt text](image-url) syntax. How to Adding Images in Markdown -------------------------------- …
文章预览
To create, read, and write to a file in Python ---------------------------------------------- To create, read, and write to a file in Python, you can use the `open()` function. …
文章预览
To add bold text in Markdown, you can use two asterisks or two underscores before and after the text you want to make bold. Here's an example: ``` This is **bold** text. ``` o…
文章预览
To add an image in Markdown, you can use the following syntax: ```  ``` Here, `Alt text` refers to the alternative text that will be displayed if the ima…
文章预览
To create a horizontal line in Markdown, you can use three or more asterisks, hyphens, or underscores on a line by themselves. Here are a few examples: ``` *** --- ___ ``` All…
文章预览
To add an emoji in Markdown, you can use emoji shortcodes or copy and paste the emoji into your Markdown-formatted text. Here's how: 1. Using emoji shortcodes: To use an emoji s…
文章预览