Skip to content

Commit

Permalink
methods are calling without any bug
Browse files Browse the repository at this point in the history
  • Loading branch information
atherdon committed Sep 12, 2021
1 parent 39c4ec5 commit 017fe50
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/html/parseHTML.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const {
replaceMarkdownPreviewText,
} = require('atherdon-callbacks');

const { stateInit } = require('../command-line-methods');
const { stateInit } = require('markup-generator');


// TODO update this method. I'm sure it can be improved.
Expand Down
3 changes: 2 additions & 1 deletion src/parser.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const {
generateContentOnly, // depricated method
generateFullTemplate2,
generateFullTemplate,
} = require('./html/methods');
Expand Down Expand Up @@ -29,7 +30,7 @@ switch (process.env.PARSE) {
break;
}

module.exports = {
module.exports = {
generateContentOnly,
generateFullTemplate,
};
2 changes: 1 addition & 1 deletion src/react/parseReact.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const {
} = require('atherdon-callbacks');


const { stateInit } = require('../command-line-methods');
const { stateInit } = require('markup-generator');

// ReactReplacer

Expand Down

0 comments on commit 017fe50

Please sign in to comment.