@yamlresume/core 0.5.1 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +34 -7
- package/dist/index.d.ts +176 -1154
- package/dist/index.js +68 -68
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/magic-string.es-PGO5ZCT3.js +0 -14
- package/dist/magic-string.es-PGO5ZCT3.js.map +0 -1
package/README.md
CHANGED
|
@@ -1,10 +1,37 @@
|
|
|
1
|
-
|
|
1
|
+
# @yamlresume/core
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/@yamlresume/core)
|
|
4
|
+
[](https://www.npmjs.com/package/@yamlresume/core)
|
|
5
|
+
[](https://www.typescriptlang.org/)
|
|
6
|
+
[](https://discord.gg/9SyT7mVV4K)
|
|
5
7
|
|
|
6
|
-
|
|
8
|
+
This package contains the core engine for
|
|
9
|
+
[YAMLResume](https://yamlresume.dev). It handles parsing, validating, and
|
|
10
|
+
rendering resumes based on the official schema. It is intended for developers
|
|
11
|
+
who want to build custom tools or integrations on top of YAMLResume.
|
|
7
12
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
13
|
+
**Note:** If you just want to create a resume, you should use the main
|
|
14
|
+
command-line tool. See the
|
|
15
|
+
[`yamlresume` package](https://www.npmjs.com/package/yamlresume) for more info.
|
|
16
|
+
|
|
17
|
+
## The Design Principle
|
|
18
|
+
|
|
19
|
+
The core design principle of YAMLResume is
|
|
20
|
+
[Separation of Concerns](https://en.wikipedia.org/wiki/Separation_of_concerns).
|
|
21
|
+
The resume content (YAML) is decoupled from its presentation (LaTeX), allowing
|
|
22
|
+
the core engine to focus on one thing: compiling a structured document into a
|
|
23
|
+
beautifully typeset PDF.
|
|
24
|
+
|
|
25
|
+
## Documentation
|
|
26
|
+
|
|
27
|
+
For more detailed information on the architecture and API, please visit our
|
|
28
|
+
official documentation:
|
|
29
|
+
|
|
30
|
+
- **[Compiler Architecture](https://yamlresume.dev/docs/compiler)**: An overview of the compilation process.
|
|
31
|
+
- **[Schema Reference](https://yamlresume.dev/docs/compiler/schema)**: The complete resume schema reference.
|
|
32
|
+
|
|
33
|
+
## Support the Project
|
|
34
|
+
|
|
35
|
+
If you find YAMLResume helpful, consider supporting the project:
|
|
36
|
+
|
|
37
|
+
[](https://buymeacoffee.com/xiaohanyu)
|