@lillallol/outline-pdf-data-structure v1.0.3
outline-pdf-data-structure
Table of contents
- Table of contents
- Installation
- Description
- Code coverage
- Example
- Documentation
- Motivation
- Contributing
- Changelog
- License
Installation
npm install @lillallol/outline-pdf-data-structureDescription
Creates a pdf outline data structure as defined in the pdf specification, from a human readable string representation of the pdf outline. You can then use that data structure to "hydrate" a real pdf outline data structure like it is done in @lillallol/outline-pdf.
Code coverage
The testing code coverage is around 90%.
Example
import { outlinePdfDataStructure } from "../";
describe(outlinePdfDataStructure.name, () => {
it("returns low level information about the provided outline string representation", () => {
expect(
outlinePdfDataStructure(
`
1||Document
2|-|Section 1
3|-|Section 2
4|--|Subsection 1
5|-|Section 3
6||Summary
`,
6
)
).toEqual({
outlineRootCount: 6,
outlineItems: [
{
Title: "Document",
Parent: -1,
Next: 5,
First: 1,
Last: 4,
Count: 4,
Dest: 1 - 1,
},
{
Title: "Section 1",
Parent: 0,
Next: 2,
Dest: 2 - 1,
},
{
Title: "Section 2",
Parent: 0,
Prev: 1,
Next: 4,
First: 3,
Last: 3,
Count: 1,
Dest: 3 - 1,
},
{
Title: "Subsection 1",
Parent: 2,
Dest: 4 - 1,
},
{
Title: "Section 3",
Parent: 0,
Prev: 2,
Dest: 5 - 1,
},
{
Title: "Summary",
Parent: -1,
Prev: 0,
Dest: 6 - 1,
},
],
});
});
});Documentation
/**
* @description
* It returns all the information needed to create a real pdf data structure.
*/
export declare function outlinePdfDataStructure(
inputOutline: string,
totalNumberOfPages: number
): outlinePdfDataStructureReturnType;Motivation
This whole package was part of @lillallol/outline-pdf, but then I decide to do separation of concerns, because it would make both projects more readable.
Contributing
I am open to suggestions/pull request to improve this program.
You will find the following commands useful:
Clones the github repository of this project:
git clone https://github.com/lillallol/outline-pdf-data-structureInstalls the node modules (nothing will work without them):
npm installTests the code and generates code coverage:
npm run testThe generated code coverage is saved in
./coverage.Lints the source folder using typescript and eslint:
npm run lintBuilds the typescript code from the
./srcfolder to javascript code in./dist:npm run build-tsInjects in place the generated toc and imported files to
README.md:npm run build-mdChecks the project for spelling mistakes:
npm run spell-checkTake a look at the related configuration
./cspell.json.Checks
./srcfor dead typescript files:npm run dead-filesTake a look at the related configuration
./unimportedrc.json.
Changelog
1.0.3
- Added documentation section in
README.md. The documentation was generated via ts-doc-gen-md and added in theREADME.mdvia md-in-place. - Added changelog section in
README.md. - Added contributing section in
README.md. - Added example section in
README.md. - Did some internal changes in the code (added
tagUnindent, created files:errorMessages.ts,constants.ts,publicApi.ts).
1.0.2
bug fixes
- Changed count to be number of descendants instead of immediate descendants.
1.0.1
Some minor link fixes in the README.md.
1.0.0
First release.
License
MIT