1
0
mirror of https://github.com/kuohuanhuan/x-markdown-css.git synced 2024-11-25 06:18:19 +00:00

Compare commits

...

7 Commits

7 changed files with 21 additions and 28 deletions

View File

@ -23,10 +23,10 @@ jobs:
with: with:
node-version: 16 node-version: 16
registry-url: https://registry.npmjs.org/ registry-url: https://registry.npmjs.org/
# Step IV # Step III
- name: Install Dependencies - name: Install Dependencies
run: npm ci run: npm ci
# Step V # Step IV
- name: Lint - name: Lint
run: npm run lint run: npm run lint
# Test Build # Test Build
@ -35,8 +35,8 @@ jobs:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
matrix: matrix:
node-version: [ 16, 18, latest ] node-version: [16, 18, latest]
os: [ ubuntu-latest, windows-latest, macos-latest ] os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false fail-fast: false
steps: steps:
# Step I # Step I

View File

@ -1,12 +1,12 @@
<h1 align="center">x-markdown-css</h1> <h1 align="center">x-markdown-css</h1>
<center> <p align="center">
[![Version](https://img.shields.io/npm/v/x-markdown-css.svg)](https://www.npmjs.com/package/x-markdown-css) [![Version](https://img.shields.io/npm/v/x-markdown-css.svg)](https://www.npmjs.com/package/x-markdown-css)
[![Node.js Requirement](https://img.shields.io/badge/node-%3E%3D16-blue.svg)](https://github.com/kuohuanhuan/x-markdown-css/blob/master/package.json) [![Node.js Requirement](https://img.shields.io/badge/node-%3E%3D16-blue.svg)](https://github.com/kuohuanhuan/x-markdown-css/blob/master/package.json)
[![MIT License](https://img.shields.io/github/license/kuohuanhuan/x-markdown-css)](https://github.com/kuohuanhuan/x-markdown-css/blob/master/LICENSE) [![MIT License](https://img.shields.io/github/license/kuohuanhuan/x-markdown-css)](https://github.com/kuohuanhuan/x-markdown-css/blob/master/LICENSE)
</center> </p>
> A simple and customizable Markdown CSS for everyone. > A simple and customizable Markdown CSS for everyone.

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "x-markdown-css", "name": "x-markdown-css",
"version": "0.0.0-20230301.7", "version": "0.0.0-20230302.2",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {

View File

@ -1,6 +1,6 @@
{ {
"name": "x-markdown-css", "name": "x-markdown-css",
"version": "0.0.0-20230301.7", "version": "0.0.0-20230302.2",
"description": "A simple and customizable Markdown CSS for everyone.", "description": "A simple and customizable Markdown CSS for everyone.",
"keywords": [ "keywords": [
"markdown", "markdown",

View File

@ -1,9 +1,10 @@
code { code {
font-size: .85rem; font-size: .85rem;
font-weight: 600; font-weight: 600;
font-family: var(--xm-font-mono); font-family: var(--xm-font-code);
color: var(--xm-c-dark); color: var(--xm-c-dark);
&::before, &::after { &::before,
&::after {
content: '`'; content: '`';
} }
} }
@ -26,9 +27,7 @@ pre {
border-width: 0; border-width: 0;
border-radius: 0; border-radius: 0;
line-height: inherit; line-height: inherit;
&::before { &::before,
content: none;
}
&::after { &::after {
content: none; content: none;
} }

View File

@ -1,2 +1,2 @@
$font-sans: 'Open Sans', 'Inter', 'Roboto', 'Helvetica', 'Arial', 'Sarasa Gothic TC', 'Sarasa Gothic SC', 'Noto Sans TC', 'Noto Sans SC', 'Microsoft JhengHei', 'Microsoft YaHei', -apple-system, sans-serif; $font-regular: 'Open Sans', 'Inter', 'Roboto', 'Helvetica', 'Arial', 'Sarasa Gothic TC', 'Sarasa Gothic SC', 'Noto Sans TC', 'Noto Sans SC', 'Microsoft JhengHei', 'Microsoft YaHei', -apple-system, sans-serif;
$font-mono: 'DM Mono', 'Fira Code', 'Jetbrains Mono', 'Input Mono', 'Menlo', 'MesloLGS NF', 'Ubuntu', monospace; $font-code: 'DM Mono', 'Fira Code', 'Jetbrains Mono', 'Input Mono', 'Menlo', 'MesloLGS NF', 'Ubuntu', monospace;

View File

@ -1,5 +1,5 @@
.markdown-body { .markdown-body {
font-family: var(--xm-font-sans) !important; font-family: var(--xm-font-regular) !important;
color: var(--xm-c-general); color: var(--xm-c-general);
pre { pre {
&:not(.shiki, .highlight) { &:not(.shiki, .highlight) {
@ -12,7 +12,7 @@
.highlight { .highlight {
margin: .5rem 0; margin: .5rem 0;
font-size: 1.05rem; font-size: 1.05rem;
font-family: var(--xm-font-mono) !important; font-family: var(--xm-font-code) !important;
line-height: 1.4; line-height: 1.4;
&.shiki-light { &.shiki-light {
background: var(--xm-c-shiki-light) !important; background: var(--xm-c-shiki-light) !important;
@ -54,11 +54,9 @@
margin-bottom: 0; margin-bottom: 0;
} }
} }
p { p:first-of-type {
&:first-of-type::before { &::before,
content: none; &::after {
}
&:first-of-type::after {
content: none; content: none;
} }
} }
@ -67,12 +65,10 @@
margin-top: 1rem; margin-top: 1rem;
} }
} }
html:not(.dark) .shiki-dark,
.dark .shiki-light { .dark .shiki-light {
display: none; display: none;
} }
html:not(.dark) .shiki-dark {
display: none;
}
.item { .item {
text-decoration: none; text-decoration: none;
opacity: .6; opacity: .6;
@ -90,9 +86,7 @@ html:not(.dark) .shiki-dark {
text-decoration: none; text-decoration: none;
border: 0 !important; border: 0 !important;
opacity: 0; opacity: 0;
&:hover { &:hover,
text-decoration: none;
}
&:focus { &:focus {
text-decoration: none; text-decoration: none;
} }