Skip to content

Commit afd133b

Browse files
committed
Merge branch 'master' of https://github.com/arlbibek/windows-ahk
2 parents b4614d9 + 874be77 commit afd133b

File tree

2 files changed

+37
-6
lines changed

2 files changed

+37
-6
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Convert Markdown to PDF
2+
3+
on:
4+
push:
5+
branches: [master]
6+
7+
jobs:
8+
convert-md-to-pdf:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v3
14+
15+
- name: Set up Node.js
16+
uses: actions/setup-node@v4
17+
with:
18+
node-version: '20'
19+
20+
- name: Install md2pdf
21+
run: npm install -g @realdennis/md2pdf
22+
23+
- name: Convert README.md to PDF
24+
run: md2pdf README.md -o assets/keyboardshortcuts.pdf
25+
26+
- name: Upload PDF as artifact
27+
uses: actions/upload-artifact@v4
28+
with:
29+
name: markdown-pdf
30+
path: assets/keyboardshortcuts.pdf

index.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Here are some of the features WINDOWS-AHK offers:
2121

2222
- 🔄 Application switcher: Launch or toggle between apps using function keys (customizable).
2323
- 📁 File Explorer power-shortcuts: Instantly Open file explorer or navigate to folders like Downloads, Music, or open VS Code in the current directory.
24-
- 🧠 Hotstrings & snippets: Type /date, /addr, etc., to expand text dynamically.
24+
- 🧠 Hotstrings & snippets: Type /date, /addr, etc., to expand text dynamically (customizable).
2525
- 🔤 Text case transformers: Change selected text to uppercase, lowercase, or title case instantly.
2626
- 🔍 Quick search: Search any selected text directly in your browser.
2727
- 🖥️ Presentation mode: Toggle Windows Presentation Mode on/off.
@@ -31,11 +31,12 @@ Here are some of the features WINDOWS-AHK offers:
3131
<summary style="font-weight: bold; cursor: pointer; outline: none;">
3232
Learn more about AutoHotKey
3333
</summary>
34-
AutoHotkey is a free and open-source scripting language for Windows, originally designed to create custom keyboard shortcuts, automate tasks, and perform fast macro-creation. It empowers users of all skill levels to automate repetitive tasks in Windows applications.
35-
36-
- Official Website: [autohotkey.com](https://www.autohotkey.com)
37-
- Download AutoHotkey: [autohotkey.com/download](https://www.autohotkey.com/download)
34+
<p>AutoHotkey is a free and open-source scripting language for Windows, originally designed to create custom keyboard shortcuts, automate tasks, and perform fast macro-creation. It empowers users of all skill levels to automate repetitive tasks in Windows applications.</p>
3835

36+
<ul>
37+
<li>Official Website: <a href="https://www.autohotkey.com">autohotkey.com</a></li>
38+
<li>Download AutoHotkey: <a href="https://www.autohotkey.com/download">autohotkey.com/download</a></li>
39+
</ul>
3940
</details>
4041

4142
## 📖 Usage
@@ -52,7 +53,7 @@ THESE SCRIPTS TEND TO BE VERY ADDICTIVE.
5253
1. Download the `WINDOWS_AHK.exe` from the latest [releases](https://github.com/arlbibek/windows-ahk/releases).
5354
2. Run the `WINDOWS_AHK.exe` file. Done!
5455

55-
> **Please note:** You are likely to encounter a **Windows SmartScreen warning** when launching `windows_ahk.exe` for the first time.
56+
> **Please note:** You are likely to encounter a [Windows SmartScreen warning](https://sockettools.com/kb/smartscreen-installation-warnings/) when launching `windows_ahk.exe` for the first time.
5657
> This is a common behavior for executables that aren't digitally signed or widely downloaded.
5758
>
5859
> To proceed: Click **"More info"** on the warning screen. Then click **"Run anyway"**.

0 commit comments

Comments
 (0)