Skip to content

Commit

Permalink
feat: basics
Browse files Browse the repository at this point in the history
  • Loading branch information
lin-stephanie committed Oct 9, 2024
0 parents commit 6dbbcf8
Show file tree
Hide file tree
Showing 34 changed files with 7,794 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
root = true

[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 2
max_line_length = 80
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
max_line_length = off
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: lin-stephanie
36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Bug Report
description: File a bug report
labels: ['bug']
title: 'Bug: '
body:
- type: markdown
attributes:
value: 'Please make sure you are on the latest version.'
- type: textarea
id: what-happened
attributes:
label: Bug description
description: What's happening and when does it happen?
validations:
required: true
- type: textarea
id: reproduce
attributes:
label: Steps to reproduce
description: The more detail you provide, the easier it will be to narrow down and fix the bug.
validations:
required: false
- type: textarea
id: expected
attributes:
label: Expected Behavior
description: What SHOULD happen?
validations:
required: false
- type: textarea
id: logs
attributes:
label: Relevant errors (if available)
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. Open Obsidian's Developer Console by pressing **CTRL + SHIFT + I** (Windows) or **Command + Option + I** (MacOS).
validations:
required: false
36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Feature Request
description: Suggest an idea
labels: ['enhancement']
title: 'Feature: '
body:
- type: markdown
attributes:
value: Before getting started, please checked the [GitHub Issues](https://github.com/lin-stephanie/obsidian-url-display/issues) (open or closed) and there are no similar issues.
- type: textarea
id: reason
attributes:
label: Reason for request
description: Please explain why this feature is important or how it will improve your experience.
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: Feature description
description: Describe the feature in detail. If you plan to submit a PR, mention it here. Thanks!
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: Any alternatives or work-arounds
description: Some features may take time to develop, so alternative options or workarounds might benefit you and others, and clarify the request.
validations:
required: false
- type: textarea
id: context
attributes:
label: Additional context
description: If applicable, add any other context or screenshots to help explain the request.
validations:
required: false
42 changes: 42 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Dependabot version updates
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: 'github-actions'
open-pull-requests-limit: 1
directory: '/'
schedule:
interval: 'monthly'
commit-message:
prefix: 'chore(deps)'
labels:
- 'dependencies'
groups:
github-actions:
applies-to: version-updates
patterns:
- '*'

- package-ecosystem: 'npm'
open-pull-requests-limit: 3
directory: '/'
schedule:
interval: 'monthly'
commit-message:
prefix: 'chore(deps)'
labels:
- 'dependencies'
groups:
major:
applies-to: version-updates
update-types:
- 'major'
minor:
applies-to: version-updates
update-types:
- 'minor'
patch:
applies-to: version-updates
update-types:
- 'patch'
78 changes: 78 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
name: CI

on:
push:
branches:
- main

pull_request:
branches:
- main

jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9

- name: Install
run: pnpm i

- name: Lint
run: pnpm lint

- name: Typecheck
run: pnpm typecheck

- name: Typecheck coverage
run: pnpm typecheck:coverage

test:
runs-on: ${{ matrix.os }}

strategy:
matrix:
node: [lts/*]
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9

- name: Install
run: pnpm i

- name: Test
run: pnpm test

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: ./coverage/coverage-final.json

- name: Build
run: pnpm build
50 changes: 50 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Release

run-name: Release ${{ github.ref_name }}

on:
push:
tags:
- '*'

permissions:
contents: write
id-token: write

jobs:
release:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
registry-url: 'https://registry.npmjs.org'
always-auth: true

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9

- name: Run install
run: pnpm i

- name: Run build
run: pnpm build

- name: Run publish
run: npm publish --provenance --access=public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Run release
run: npx changelogithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28 changes: 28 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# editors
.DS_Store
.idea/

# coverage
coverage/
*.lcov

# dependencies
node_modules/

# environment vars
.env
.env.production

# build output
dist/

# artifacts
.local
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
test/**/*/output.html
19 changes: 19 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"experimentalTernaries": false,
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"quoteProps": "consistent",
"jsxSingleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"proseWrap": "preserve",
"htmlWhitespaceSensitivity": "css",
"endOfLine": "lf",
"embeddedLanguageFormatting": "auto",
"singleAttributePerLine": false
}
11 changes: 11 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"recommendations": [
// https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig
"EditorConfig.EditorConfig",

// https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode
"esbenp.prettier-vscode"
]
/* "unwantedRecommendations": [
] */
}
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Stephanie Lin

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# remark-directive-sugar

[![codecov][coverage-badge]][coverage]
[![npm downloads][npm-downloads-src]][npm-downloads-href]
[![jsDocs.io][jsdocs-src]][jsdocs-href]

A [remark](https://github.com/remarkjs/remark) plugin built on remark-directive, providing predefined directives for image captions, video embedding, styled GitHub links, badge markers, and more.

## Usage

[See how to use it](https://astro-antfustyle-theme.vercel.app/blog/markdown-mdx-extended-features/#image-figure), where the styles need to be custom written and added.

The basic functionality has been implemented, but it's still a work in progress.

## Contribution

If you see any errors or room for improvement on this plugin, feel free to open an [issues](https://github.com/lin-stephanie/rehype-callouts/issues) or [pull request](https://github.com/lin-stephanie/rehype-callouts/pulls) . Thank you in advance for contributing!

## License

[MIT](https://github.com/lin-stephanie/remark-directive-sugar/blob/main/LICENSE) © 2024-PRESENT [Stephanie Lin](https://github.com/lin-stephanie)

<!-- Badges -->

[coverage-badge]: https://img.shields.io/codecov/c/github/lin-stephanie/remark-directive-sugar?style=flat&colorA=080f12&colorB=ef7575
[coverage]: https://codecov.io/github/lin-stephanie/remark-directive-sugar
[npm-downloads-src]: https://img.shields.io/npm/dm/remark-directive-sugar?style=flat&colorA=080f12&colorB=ef7575
[npm-downloads-href]: https://npmjs.com/package/remark-directive-sugar
[jsdocs-src]: https://img.shields.io/badge/jsdocs-reference-080f12?style=flat&colorA=080f12&colorB=ef7575
[jsdocs-href]: https://www.jsdocs.io/package/remark-directive-sugar
Loading

0 comments on commit 6dbbcf8

Please sign in to comment.