Merge pull request #5335 from urbit/revert-5265-master

Revert "blockquote: Remove unnecessary log of quote contents"
This commit is contained in:
Liam Fitzgerald 2021-10-19 12:35:05 -05:00 committed by GitHub
commit 28f64079a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
/* eslint-disable */ /* eslint-disable */
/** pulled from remark-parse /** pulled from remark-parse
* *
* critical change is that blockquotes require a newline to be continued, see * critical change is that blockquotes require a newline to be continued, see
* the `if(!prefixed) conditional * the `if(!prefixed) conditional
*/ */
@ -120,6 +120,7 @@ function blockquote(eat, value, silent) {
exit = self.enterBlock() exit = self.enterBlock()
contents = self.tokenizeBlock(contents.join(lineFeed), now) contents = self.tokenizeBlock(contents.join(lineFeed), now)
console.log(values);
exit() exit()
const added = add({type: 'blockquote', children: contents}) const added = add({type: 'blockquote', children: contents})