Closed martinandersen3d closed 2 years ago
Hi @martinandersen3d are you sure about that? There is a routine that deals with duplicates in the script by appending '_[number]' to the exported markdown:
# in case multiple pages with the same name exist in a section, postfix the filename
if ([System.IO.File]::Exists("$($fullexportpathwithoutextension).md")) {
$pagename = "$($pagename)_$recurrence"
$recurrence++
}
Probably this is now fixed with #23. Could you please verify @martinandersen3d ?
when there is duplicate names, one will override the other.
I dont think it needs to be fixed (just an edgecase). Just want to report it.