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

推荐订阅源

博客园_首页
H
Help Net Security
N
Netflix TechBlog - Medium
Apple Machine Learning Research
Apple Machine Learning Research
P
Proofpoint News Feed
A
About on SuperTechFans
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
宝玉的分享
宝玉的分享
aimingoo的专栏
aimingoo的专栏
F
Fortinet All Blogs
博客园 - 【当耐特】
Microsoft Security Blog
Microsoft Security Blog
Martin Fowler
Martin Fowler
I
InfoQ
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog RSS Feed
U
Unit 42
The Cloudflare Blog
Y
Y Combinator Blog

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - think41/extrasuite: Token-efficient pull/edit/push workflow for AI agents editing Google Workspace files (Sheets, Docs, Slides, Forms) GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw
GitHub - Luthiraa/markitme
2026-04-11 · via Hacker News: Show HN

Drop any file. Get beautiful Markdown.

Turn PDFs, Word docs, PowerPoints, HTML pages, spreadsheets, images, and code into clean, readable Markdown you'd actually want to open.

CI License: MIT


                    ┌──────────┐
  .pdf .docx .pptx  │          │   pretty Markdown
  .html .csv .py ──▶│ markitme │──▶ with frontmatter,
  .jpg .tsx .json   │          │   callouts, and TOC
                    └──────────┘

Install

Usage

markitme report.pdf
markitme report.pdf --pretty
markitme report.pdf --pretty --obsidian
markitme report.pdf --pretty --stdout | pbcopy
markitme ./docs --human --output ./vault

--human is the one-flag shortcut: turns on --pretty, --obsidian, and --wiki (for folders).

What the flags do

Flag What it does
--pretty Contextual emoji headings (80+ keywords), info badge, callouts from Note/Warning/Tip/Important patterns, collapsible long quotes, auto-detected code fence languages
--obsidian YAML frontmatter (title, tags, aliases, source, author), image wikilinks (![[file.png|alt]]), cross-document [[links]] in batch mode
--wiki Master README with table of contents, per-file sections, "See Also" cross-links by keyword overlap, typed file index
--toc Injects a table of contents from headings
--strip No decoration at all. Just the raw converted content
--stdout Print to stdout instead of writing a file. Pipe to anything
--enhance TL;DR summary + heading rewrite via local Ollama. No API keys
--reflect Appends a "Key Insights" section generated by Ollama
--human --pretty + --obsidian + --wiki (on folders)

Before / After

Input: A 15-page architecture PDF

markitme report.pdf (no flags):

## Page 1

Platform Architecture
This document covers our system design.

## Page 2

Components
API Gateway...

markitme report.pdf --pretty --obsidian:

---
title: Report
tags: [markitme, pdf, architecture]
author: Jane Doe
created: 2026-04-11 12:00
---
# 🏗️ Platform Architecture

**Built with MarkitMe** · Source: PDF · 15 pages · Author: Jane Doe · Converted April 11, 2026

---

## ⚙️ Components

> [!note]
> All services communicate over gRPC.

| Service | Status |
|---------|--------|
| API     | Live   |
| Auth    | Beta   |

Folder → Wiki

markitme ./project-docs --human --output ./wiki

Creates:

wiki/
├── README.md        ← master doc with TOC, stats, cross-links
├── _index.md        ← file listing organized by type
├── architecture.md
├── roadmap.md
├── api-spec.md
├── attachments/
│   ├── diagram.png
│   └── screenshot.jpg
├── summaries/
└── sources/

The master README links everything together with a table of contents, per-file sections, and auto-detected "See Also" connections between documents that share topics.

Document metadata

PDF and Word files have real metadata — author, title, creation date, subject. markitme extracts it and puts it in:

  • The YAML frontmatter (--obsidian)
  • The badge line (--pretty)
  • The result.metadata dict (library API)

Library API

import markitme

md = markitme.to_markdown("report.pdf", pretty=True)

result = markitme.convert("slides.pptx", pretty=True, obsidian=True)
result.markdown
result.title
result.images
result.page_count
result.metadata

results = markitme.convert_folder("./docs", output="./vault", pretty=True, wiki=True)

Supported formats

Category Formats
Documents PDF, DOCX, PPTX, HTML, CSV, TSV, TXT, MD
Images PNG, JPG, GIF, WebP, BMP, TIFF, SVG
Code 50+ languages — auto-detected syntax highlighting

Local LLM enhancement

pip install "markitme[enhance]"
markitme paper.pdf --enhance --reflect

Uses whatever model you have in Ollama (prefers llama3.2, gemma2, mistral). Falls back silently if Ollama isn't running. No API keys, no cloud, everything local.

License

MIT