alexis<3
04/06/2022, 7:51 PMd1onys1us
04/06/2022, 8:14 PMkevins8
04/06/2022, 8:25 PMalexis<3
04/06/2022, 8:48 PMalexis<3
04/06/2022, 8:49 PMalexis<3
04/06/2022, 8:50 PMSeriousBug
04/06/2022, 8:51 PM![[dendron://other-vault/root]]
, the contents of that note will appear in this note. Or without the !
if you just want to link to it.alexis<3
04/06/2022, 8:52 PMalexis<3
04/06/2022, 8:53 PMalexis<3
04/06/2022, 8:55 PMalexis<3
04/06/2022, 9:00 PMIrishAndyB
04/06/2022, 9:34 PMSeriousBug
04/06/2022, 9:36 PMIrishAndyB
04/06/2022, 9:39 PMalexis<3
04/06/2022, 9:45 PMalexis<3
04/06/2022, 9:45 PMSeriousBug
04/06/2022, 9:47 PMalexis<3
04/06/2022, 9:47 PMkevins8
04/06/2022, 9:48 PMalexis<3
04/06/2022, 9:49 PMmodified in <date range> && hasTag(complete)
alexis<3
04/06/2022, 9:53 PMkevins8
04/06/2022, 11:26 PMalexis<3
04/07/2022, 1:02 AMalexis<3
04/07/2022, 1:03 AMSeriousBug
04/07/2022, 1:24 AMuser
04/07/2022, 2:21 AMpython
import os
import shutil
path = os.getcwd()
md_list = []
dst = path + "/references/"
for root, dirs, files in os.walk("./", topdown=True):
for filename in files:
#print(os.path.join(root, filename))
if not filename.endswith('.md'):
md_list.append(os.path.join(root,filename))
for md in md_list:
#if not os.path.isfile(md):
try:
shutil.move(md, dst)
except Exception as e:
print(f"An error was raised but the script will continue: {e}")
continue
I tried the Import Markdown
pod again and still got the exceeds maximum call stack
error.
However, I tried it on a single directory and it worked except for a file it couldnt resolve.
Ill open a bug report and continue to dig into the issue.user
04/07/2022, 2:44 AMkevins8
04/07/2022, 3:59 AMuser
04/07/2022, 4:20 AMTika
04/07/2022, 10:09 AM