A simple PL/SQL code-to-document converter that extracts specially formatted PL/SQL comments and generates Markdown documentation files. Current stable version is 0.9.1, released on npm and written in JavaScript. It is a lightweight tool (around 120 lines of code) that supports packages, functions, procedures, types, and triggers. Key differentiators: focuses solely on PL/SQL-to-Markdown conversion with minimal configuration, supports table of contents generation, and integrates with file watchers for automated documentation updates. Compared to PLDoc or other PL/SQL doc generators, PLOC is deliberately minimal and requires explicit comment markers (`/** ... **/`) for documentation extraction.
npm install plocNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Converts a PL/SQL source string containing specially commented items into Markdown documentation.
Ensure all documentation comments use the /** ... **/ syntax instead of /* ... */.
Set the `toc` option to `true` or adjust the `tocMinItems` threshold.
Use ESM import syntax: `import { ploc } from 'ploc'`.Add "type": "module" to your package.json or rename the file to .mjs.
Use either `import ploc from 'ploc'` or `import { ploc } from 'ploc'`.Ensure every /** comment is terminated with **/ (double asterisk slash, not just */).
Verify that your PL/SQL code includes at least one supported object with a documentation comment immediately after the signature.
No dependency data recorded yet.