mirror of
https://github.com/kuohuanhuan/x-markdown-css.git
synced 2024-11-25 06:18:19 +00:00
Compare commits
6 Commits
v0.0.0-202
...
v0.0.0-202
Author | SHA1 | Date | |
---|---|---|---|
51046f4088
|
|||
a7492b1975
|
|||
6179dc8634
|
|||
941e73a889
|
|||
af46b8e083
|
|||
e2aeb767cd
|
7
.github/workflows/release.yml
vendored
7
.github/workflows/release.yml
vendored
@ -29,11 +29,16 @@ jobs:
|
|||||||
- name: Build Project
|
- name: Build Project
|
||||||
run: npm run build
|
run: npm run build
|
||||||
# Step V
|
# Step V
|
||||||
|
- name: Regenerate `.gitignore`
|
||||||
|
run: |
|
||||||
|
rm -f .gitignore
|
||||||
|
echo 'node_modules/' >> .gitignore
|
||||||
|
# Step VI
|
||||||
- name: Publish to NPM Registry
|
- name: Publish to NPM Registry
|
||||||
uses: JS-DevTools/npm-publish@v1
|
uses: JS-DevTools/npm-publish@v1
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.NPM_TOKEN }}
|
token: ${{ secrets.NPM_TOKEN }}
|
||||||
# Step VI
|
# Step VII
|
||||||
- name: Generate Changelog
|
- name: Generate Changelog
|
||||||
run: npx changelogithub@0.12
|
run: npx changelogithub@0.12
|
||||||
env:
|
env:
|
||||||
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
node_modules/
|
node_modules/
|
||||||
|
dist/
|
||||||
|
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "x-markdown-css",
|
"name": "x-markdown-css",
|
||||||
"version": "0.0.0-20230301.2",
|
"version": "0.0.0-20230301.5",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "x-markdown-css",
|
"name": "x-markdown-css",
|
||||||
"version": "0.0.0-20230301.2",
|
"version": "0.0.0-20230301.5",
|
||||||
"description": "A simple and customizable Markdown CSS for everyone.",
|
"description": "A simple and customizable Markdown CSS for everyone.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"markdown",
|
"markdown",
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
code {
|
code {
|
||||||
font-size: .85rem;
|
font-size: .85rem;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
|
font-family: var(--xm-font-mono);
|
||||||
color: var(--xm-c-dark);
|
color: var(--xm-c-dark);
|
||||||
&::before, &::after {
|
&::before, &::after {
|
||||||
content: '`';
|
content: '`';
|
||||||
|
@ -6,8 +6,7 @@ q {
|
|||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
border-color: var(--xm-c-blockquote-border);
|
border-left: .25rem solid var(--xm-c-blockquote-border);
|
||||||
border-left-width: .25rem;
|
|
||||||
quotes: '\201C''\201D''\2018''\2019';
|
quotes: '\201C''\201D''\2018''\2019';
|
||||||
p {
|
p {
|
||||||
&:first-of-type::before {
|
&:first-of-type::before {
|
||||||
|
Reference in New Issue
Block a user