We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9d58d9 commit 8cc1aa3Copy full SHA for 8cc1aa3
test/test-helper.el
@@ -583,6 +583,12 @@ results instead of an equality match."
583
(when-let* ((req (jupyter-org-request-at-point)))
584
(jupyter-idle-sync req)))
585
(goto-char (or (org-babel-where-is-src-block-result) (point)))
586
+ (when (plist-get args :pandoc)
587
+ (let ((start (point)))
588
+ ;; Wait until all pandoc processes have been completed.
589
+ (while (text-property-search-forward 'jupyter-pandoc)
590
+ (sleep-for 0.2)
591
+ (goto-char start))))
592
(let ((element (org-element-context)))
593
;; Handle empty results with just a RESULTS keyword
594
;;
0 commit comments