惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 司徒正美
大猫的无限游戏
大猫的无限游戏
腾讯CDC
J
Java Code Geeks
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
V
Visual Studio Blog
人人都是产品经理
人人都是产品经理
博客园 - Franky
博客园 - 聂微东
阮一峰的网络日志
阮一峰的网络日志
美团技术团队
云风的 BLOG
云风的 BLOG
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
雷峰网
雷峰网
B
Blog RSS Feed
博客园_首页
量子位
F
Fortinet All Blogs
罗磊的独立博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More
酷 壳 – CoolShell
酷 壳 – CoolShell
C
Check Point Blog

Hacker News

GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis Bonsai 1-bit WebGPU - a Hugging Face Space by webml-community Moving a large-scale metrics pipeline from StatsD to OpenTelemetry / Prometheus GitHub - Nightmare-Eclipse/RedSun: The Red Sun vulnerability repository GitHub - SethPyle376/hiraeth: Local AWS emulator focused on fast integration testing, with SQS support, SQLite-backed state, and a debug-friendly web UI. GitHub - macOS26/Agent: Any AI, replaces Claude Code, Cursor, OpenClaw. Over 18 LLM providers (Claude, OpenAI, Gemini, Ollama, Zai, HF, Qwen) wired into a native Mac app that writes code, builds Xcode projects, bumps versions, manages git, automates Safari, use AppleScript, JS or Accessibility, extend Agent! w/ MCP Servers, run tasks from your iPhone via Messages. YouTube now lets you turn off Shorts I Made a Terminal Pager Burgers | マクドナルド公式 Commands — HackerNews CLI documentation ChatGPT for Excel PiCore - Raspberry Pi Port of Tiny Core Linux Live Nation illegally monopolized ticketing market, jury finds Google Broke Its Promise to Me. Now ICE Has My Data. Founding Engineer at Adaptional | Y Combinator CRISPR takes important step toward silencing Down syndrome’s extra chromosome GitHub - saffron-health/libretto: The AI toolkit for building reliable browser automations US v. Heppner (S.D.N.Y. 2026) no attorney-client privilege for AI chats [pdf] Retrofitting JIT Compilers into C Interpreters IPv6 – Google The Accursèd Alphabetical Clock Cybersecurity Looks Like Proof of Work Now Fragments: April 14 Cal.com Goes Closed Source: Why AI Security Is Forcing Our Decision | Cal.com - Scheduling Software for Online Bookings Laravel raised money and now injects ads directly into your agent When moving fast, talking is the first thing to break Too much Discussion of the XOR swap trick – Heather Cafe Introduction to Spherical Harmonics for Graphics Programmers The Grand Line
Our continuation of MkDocs and a warning regarding "MkDoc...
oprypin · 2026-05-06 · via Hacker News

Hello, MkDocs community!

You may know me as the previous (last active) maintainer of MkDocs.

I welcome everyone to our continuation from where MkDocs was left off, named ProperDocs. You can already install it and use it as a drop-in replacement for MkDocs.

We need your support! Spread the word, come say hi, bring relevant issues to our attention!
Plugin authors can also help us further spread this warning to users. (See more info at the bottom of the post)

Why this was necessary

Sadly, at the moment MkDocs is completely unmaintained. The original author has been holding control of the project for the last 2 years while completely disregarding all feedback and all incoming issues. Offers to take over maintenance have been ignored too. They also openly state that there is a gender preference in place, leaving everyone very puzzled.

But that's not even the worst part. Their latest plan is to reuse the project's name and publish an entirely new documentation generator under it. This will break support for all themes and plugins that were made for MkDocs, with no alternative provided. Community feedback has not been welcomed.
So, by using pip install mkdocs, you are subjected to an ongoing gamble as to if/when this breakage happens.

Solution for users

We welcome you to switch to ProperDocs, our carefully crafted fork of MkDocs. At the moment it is an exact drop-in replacement for MkDocs, only with a few most critical bug fixes added. In the future you can of course expect further development.

Note

If you don't appreciate our warning that appeared when running mkdocs on the command line, you can disable the warning directly - by setting the environment variable DISABLE_MKDOCS_2_WARNING=true NO_MKDOCS_2_WARNING=true.

Here's how to get started:
(or if you're a new user, just start with https://properdocs.org/ directly.)

1. Replace the dependency

If you have mkdocs as a dependency, please replace it right away:

  • Before: pip install mkdocs mkdocs-foo-plugin
  • After: pip install properdocs mkdocs-foo-plugin

Note that plugins should remain under their existing name even if they contain "mkdocs" in the name. They will work as is, and plugin authors don't need to create a new renamed project just for this.

2. Replace the command

  • Before: mkdocs build
  • After: properdocs build

(fully equivalent command line in all cases, no changes other than the command's name).

3. Optional followups

The program will remind you about these followups itself, but here they are as well:

You are welcome to rename your configuration file from mkdocs.yml to properdocs.yml, but you don't have to.

If you are using the themes "mkdocs" or "readthedocs", they have to be additionally installed. We took this opportunity to exclude them from the default installation to make it lightweight. This is the only change that could be called a breaking change.
(As such, currently there is no default theme at all. Contributions particularly welcome.)

Technical background

It was long believed that a fork is not feasible due to how every plugin depends on mkdocs directly, and I certainly believed this myself, but I realized that it's possible to overcome these issues. Unfortunately the realization came only very recently.

For plugin authors

We ask all plugin authors to join our effort.

Note

We explicitly do not ask you to break the users of MkDocs who still remain, and there's no need to do any migration that leaves only ProperDocs working. In fact, you shouldn't do anything at all, your plugin already works under ProperDocs in addition to MkDocs.

What we need is to spread the word. A plugin should do this:

  1. Edit your dependencies:

    Change from mkdocs >=1.2.3 to mkdocs >=1.2.3, <=1.6.1
    AND add properdocs as an additional dependency.

    Limiting the dependency on mkdocs is needed in order to prevent an unpredictable future release from breaking both the users and our last resistance point. 1.6.1 is the last known release.

    And adding properdocs just enables the next step. The doubled dependency is a bit of a waste, but we will be in a situation where almost everything pulls in mkdocs anyway, for a very long time.

  2. In the main file of your plugin (__init__.py or wherever the main class is defined), add the following code in the outermost scope:

    import properdocs.replacement_warning
    
    properdocs.replacement_warning.setup()

    This will cause a warning to be produced at the start of any mkdocs build invocation whenever at least 1 participating plugin is involved.

    Alternatively, you're free to print some warning differently in your own way. Check out our implementation: https://github.com/ProperDocs/properdocs/blob/master/properdocs/replacement_warning.py