We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1637f1 commit bdfe9ceCopy full SHA for bdfe9ce
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "jspdf-md-renderer",
3
- "version": "2.0.0",
+ "version": "3.0.0",
4
"description": "A jsPDF utility to render Markdown directly into formatted PDFs with custom designs.",
5
"main": "dist/index.js",
6
"module": "dist/index.mjs",
src/renderer/MdTextRender.ts
@@ -37,7 +37,7 @@ export const MdTextRender = async (
37
RenderStore.initialize(validOptions);
38
const parsedElements = await MdTextParser(text);
39
await prefetchImages(parsedElements);
40
- console.log(parsedElements);
+ // console.log(parsedElements);
41
42
const renderElement = (
43
element: ParsedElement,
0 commit comments