#+title: Org 示例文件 #+author: TEC #+date: 2020-10-27
* 改版 orgmode.org 网站
*必须* 分享 org /之美/。
[[https://upload.wikimedia.org/wikipedia/commons/b/bd/Share_Icon.svg]]
** DONE 截图
CLOSED: [2020-09-03 Thu 18:24]
** DONE 重新设计网站的 CSS
查看:[[file:style.scss][stylesheet]]
** TODO 检查主要页面的 CSS
* 学习 Org
Org 让事情变得如履平地。 你只需要阅读快速入门页面,就可以开始上手 Org 了。 如果还未能满足,请深入 Org 的手册,以及参与到社区里!
** 反馈
#+include: "other/feedback.org*manual" :only-contents t
* 检查 CSS 压缩比
#+begin_src python
from pathlib import Path cssRatios = [] for css_min in Path("resources/style").glob("*.min.css"): css = css_min.with_suffix('').with_suffix('.css') cssRatios.append([css.name, "{:.0f}% minified ({:4.1f} KiB)".format( 100 * css_min.stat().st_size / css.stat().st_size, css_min.stat().st_size / 1000)]) return cssRatios
#+end_src
#+RESULTS:
| index.css | 76% minified ( 1.4 KiB) |
| org-demo.css | 77% minified ( 2.8 KiB) |
| errors.css | 74% minified ( 4.9 KiB) |
| org.css | 75% minified (10.7 KiB) |