Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
7
- `src/` holds the TypeScript source. Key areas are `src/algorithms/`, `src/utils/`, `src/models/`, `src/types/`, and the public entry at `src/index.ts`.
Sign in to like and favorite skills
src/ holds the TypeScript source. Key areas are src/algorithms/, src/utils/, src/models/, src/types/, and the public entry at src/index.ts.tests/ contains Bun tests (currently tests/crypto-utils.test.ts).dist/ is the build output generated by tsdown and is the published package content.bun install installs dependencies.bun run lint runs Biome formatting + linting with auto-fix.bun run check runs TypeScript type-checking (tsc --noEmit).bun test runs the Bun test suite.bun run build runs lint, tests, and bundles to dist/ via tsdown.tsconfig.json).biome.json). Use single quotes and spaces for indentation.generateNonce, processCiphertext).src/index.ts; keep internal helpers in src/utils/.bun:test with describe/test/expect.bun test.feat: ..., fix: ..., refactor: ..., test: ..., chore: ...).