-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat!: change export path #8
base: main
Are you sure you want to change the base?
Conversation
.gitignore
Outdated
@@ -2,4 +2,6 @@ node_modules/ | |||
www/ | |||
bundle/ | |||
|
|||
.idea |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is your machine specific configuration and should not be in the repository
use global git config
https://stackoverflow.com/questions/7335420/global-git-ignore
lgtm one small thing tho, can you please clean up commit history? or three commits into one? |
2c15f80
to
3a6b97b
Compare
|
||
export type PlaygroundProperties = { | ||
content?: string; | ||
tabs?: { id: string, title: string }[]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we are allowing to choose from predefined tabs(with transformations that goes with them)
each id has transformations tied up to them: md2html(preview), md2html(raw), md2md, etc...
change type to
tabs?: Tabs[]
export type Tabs = {
id: 'preview' | 'html' | 'markdown' | 'tokens';
title: string;
}
@@ -38,7 +38,7 @@ | |||
padding: var(--g-text-body-1-font-size); | |||
} | |||
|
|||
.area__card > section { | |||
.area-card__editor > section { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
since you are nuking borders from html preview, can you also remove borders from other tabs.
now layout "jumping" because of that
No description provided.