New Search Modal

This commit is contained in:
mProjectsCode 2022-05-05 20:55:54 +02:00
parent cc2962220e
commit 6dc813a14c
9 changed files with 203 additions and 28 deletions

View file

@ -1,4 +1,6 @@
import {MediaTypeModel} from './MediaTypeModel';
import {stringifyYaml} from 'obsidian';
export class MovieModel extends MediaTypeModel {
type: string;
@ -29,7 +31,7 @@ export class MovieModel extends MediaTypeModel {
}
toMetaData(): string {
return JSON.stringify(this);
return stringifyYaml(this);
}
}