Skip to content

Commit

Permalink
Remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Arpita-Jaiswal committed Oct 5, 2023
1 parent 69ed956 commit 3f1a6cc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions fastn-js/js/dom.js
Original file line number Diff line number Diff line change
Expand Up @@ -1878,11 +1878,8 @@ class Node2 {
} else if (kind === fastn_dom.PropertyKind.StringValue) {
this.#rawInnerValue = staticValue;
if (!hydrating) {
console.log("Before staticValue", staticValue);
staticValue = fastn_utils.markdown_inline(fastn_utils.escapeHtmlInMarkdown(staticValue));
console.log("After staticValue", staticValue);
staticValue = fastn_utils.process_post_markdown(this.#node, staticValue);
console.log("More After staticValue", staticValue);
} else {
staticValue = this.#node.innerHTML;
}
Expand Down
1 change: 0 additions & 1 deletion fastn-js/js/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,6 @@ let fastn_utils = {
* @returns {string} - The processed string with inline markdown.
*/
markdown_inline(i) {
console.log("Before markdown_inline", i);
if (fastn_utils.isNull(i)) return;
const { space_before, space_after } = fastn_utils.private.spaces(i);
const o = (() => {
Expand Down

0 comments on commit 3f1a6cc

Please sign in to comment.