| First Header | Second Header |
|---|---|
| Content Cell | Content Cell |
| Content Cell | Content Cell |
| [[erererer|hello]] | Second Header | | ------------- | ------------- | | Content Cell | Content Cell |
See here for a description of what this proposal is all about.
Required settings
HH:mm, see moment's formatting options)The goal of this proposal is to enable compatibility between plugins that combine dates and tasks.
Currently, most plugins implement their own structured date format.
Kanban plugin: - [ ] task 1 @[[2021-11-01]] @@{8:35}
Tasks plugin: - [ ] task 1 📆2021-11-1
Reminders: - [ ] task 1 ([[2021-11-01]] 8:35)| @font-face { | |
| font-family: "Inter"; | |
| font-weight: 100 1000; | |
| font-style: normal; | |
| font-display: swap; | |
| src: url("/Users/matt/Library/Fonts/Inter-VariableFont_slnt,wght.ttf") | |
| format("ttf"); | |
| } | |
| :root { |
| import React, { Dispatch, SetStateAction } from 'react' | |
| type Provider = (props: React.PropsWithChildren<{}>) => JSX.Element | |
| interface Atom<T> { | |
| Provider: Provider | |
| SetterContext: React.Context<Dispatch<SetStateAction<T>>> | |
| ValueContext: React.Context<T> | |
| } |