This is the official repository for containing extensions for OrgNote application. You are free to add a new extension by creating PR.
WARNING *OrgNote is currently in the beta stage. API may be changed in the future*
- Official website
- Org Note client
- Typescript abstract syntax tree for org mode.
- Discord server
- NPM package for creating your own extension
- Fork repository.
- Create new
.json
file in therecipes
folder with next structure (typescript type): This structure could be updated, see NPM package for OrgNote API for more information.
export interface ExtensionManifest {
/* Should be unique in the extension repo */
name: string;
version: string;
category: 'theme' | 'extension' | 'language pack' | 'other';
/* OrgNote api semver, 0.13.4 for example */
apiVersion?: string;
author?: string;
description?: string;
keywords?: string[];
// Repository url
sourceType: 'git' | 'file';
/* Default value is README.org */
readmeFilePath?: string;
/* WIP */
permissions?: Array<'files' | 'personal info' | '*' | 'third party'>;
reloadRequired?: boolean;
sourceUrl?: string;
sponsor?: string[];
development?: boolean;
icon?: string;
}
See more example in the https://github.com/artawower/orgnote-extensions/tree/master/recipes directory.
./update-version.sh