Mara
Mara
Explore posts from servers
MDCMara's Developper Corner
Created by kijageundoni on 10/12/2024 in #🐕get-help
this..I'm building a github blog and using "jekyl chirpy" theme. So the .md file has to go into th
The error is… Normal. Litteraly. It's in the doc : when a file doesn't exists, you get a 404 error. It's said in the log when opening the DEV tools console (CTRL+ALT+I)
2 replies
MDCMara's Developper Corner
Created by Benjamin on 10/7/2024 in #🐕get-help
Can't upload to github
14 replies
MDCMara's Developper Corner
Created by Benjamin on 10/7/2024 in #🐕get-help
Can't upload to github
From the properties…? Litteraly a chore feature of obsidian… It's often called metadata or properties
14 replies
MDCMara's Developper Corner
Created by Benjamin on 10/7/2024 in #🐕get-help
Can't upload to github
Do your note have the share: true in the frontmatter ?
14 replies
MDCMara's Developper Corner
Created by Benjamin on 10/7/2024 in #🐕get-help
Can't upload to github
Pretty strange for the console. Do ou use the last version of the plugin? Also, are the note exist on the repository? What happend when you try to publish the active note ?
14 replies
MDCMara's Developper Corner
Created by Benjamin on 10/7/2024 in #🐕get-help
Can't upload to github
With probably some question to
14 replies
MDCMara's Developper Corner
Created by Benjamin on 10/7/2024 in #🐕get-help
Can't upload to github
I'm under the rain, will check ASAP today if I have some pause during work!
14 replies
MDCMara's Developper Corner
Created by Benjamin on 10/7/2024 in #🐕get-help
Can't upload to github
Please follow the error template. Open the console to check if any error are found.
14 replies
MDCMara's Developper Corner
Created by fr3fou on 10/1/2024 in #🐕get-help
Images are pushed every time
It will always "push" the first note (when using with "send active note") but not always the other
9 replies
MDCMara's Developper Corner
Created by fr3fou on 10/1/2024 in #🐕get-help
Images are pushed every time
@fr3fou If you want you can update to the latest version, so you can prevent pushing an already existing & not edited file !
9 replies
MDCMara's Developper Corner
Created by fr3fou on 10/1/2024 in #🐕get-help
Images are pushed every time
Added in last version, in embed tab settings
9 replies
MDCMara's Developper Corner
Created by fr3fou on 10/1/2024 in #🐕get-help
Images are pushed every time
Also, for recursive send even if already in repo, it's intended, as I must made a call to check if a file is already in the repo to get the info. So, pushing a file will be 2 call instead of one. I can made an option to force push note or note, if you want!
9 replies
MDCMara's Developper Corner
Created by fr3fou on 10/1/2024 in #🐕get-help
Images are pushed every time
For some reason, can't repro on last version (7.3.2) :fronk:
9 replies
MDCMara's Developper Corner
Created by fr3fou on 10/1/2024 in #🐕get-help
Images are pushed every time
Can repo :check:
9 replies
MDCMara's Developper Corner
Created by fr3fou on 9/20/2024 in #🐕get-help
Plugin publishes unshared notes
should be fixed in the last version
96 replies
MDCMara's Developper Corner
Created by fr3fou on 9/20/2024 in #🐕get-help
Plugin publishes unshared notes
THey updated the function and it needs more option now
96 replies
MDCMara's Developper Corner
Created by fr3fou on 9/20/2024 in #🐕get-help
Plugin publishes unshared notes
Oh, I see
96 replies
MDCMara's Developper Corner
Created by fr3fou on 9/20/2024 in #🐕get-help
Plugin publishes unshared notes
Here the function I use :
export async function convertToHTMLSVG(file: TFile, app: App) {
try {
const excalidraw = app.plugins.getPlugin("obsidian-excalidraw-plugin");
if (!excalidraw) return null;
// @ts-ignore
const ea = excalidraw.ea;
const svg = await ea.createSVG(file.path, ea.getExportSettings(true, true));
return svg.outerHTML as string;
} catch (e) {
console.error(e);
return null;
}
}
export async function convertToHTMLSVG(file: TFile, app: App) {
try {
const excalidraw = app.plugins.getPlugin("obsidian-excalidraw-plugin");
if (!excalidraw) return null;
// @ts-ignore
const ea = excalidraw.ea;
const svg = await ea.createSVG(file.path, ea.getExportSettings(true, true));
return svg.outerHTML as string;
} catch (e) {
console.error(e);
return null;
}
}
96 replies
MDCMara's Developper Corner
Created by fr3fou on 9/20/2024 in #🐕get-help
Plugin publishes unshared notes
yup
96 replies