마크다운 작성 테스트
D
DINKIssTyle (61.♡.73.102)
2026년 5월 14일 PM 05:34
조회 40 공감 0
What's New in Version 2.1 Beta4
Lightweight and elegant cross-platform
Markdown viewer and editor!
Markdown viewer and editor!
DKST Markdown Browser has become even more powerful! Check out the major features added in this version.
🚀 Version 2.1 Key Changes
Introduction of the Sidebar
A button to open the sidebar on the left side of the tab bar has appeared. Shortcut: CTRL+ALT+S (macOS: CMD+OPT+S)
- Sidebar Composition:
- File Tree: Displays the home folder of open files as a file directory structure. You can view markdown and image files directly by selecting them.
- Outline: View the outline of your markdown document.
- Search: The search function, previously located in the main toolbar up to version 2.0, has been merged here.
Small but Changed Things
- Popup Tooltip: When hover your mouse cursor over a hyperlink, the destination address is displayed.
New Feature and Improvement Plan
- Use file tree for hyperlinks and image insertion
To be continued.
Recent Changes
2.1 Beta2
Added & Bug Fixes & Polish
- Added: Syntax Highlight for Markdown Rendering
Python
# Fibonacci sequence def fibonacci(n: int) -> list[int]: result = [] a, b = 0, 1while len(result) < n: result.append(a) a, b = b, a + b return result
if name == "main":
print("Fibonacci:", fibonacci(10))
Bash
#!/usr/bin/env bashset -euo pipefail
NAME="${1:-World}"
if [[ "$NAME" == "admin" ]]; then
echo "Welcome, administrator."
else
echo "Hello, $NAME!"
fi
for file in *.txt; do
[[ -e "$file" ]] || continue
echo "Found text file: $file"
done
2.1 Beta3
Added
- Insert links and images directly into the edited document from the file tree.
- Table Insertion Visualization: Try inserting a table with
/table. You can insert it intuitively using keyboard arrow keys. - Emoji Insertion Advanced A modal window categorized by category allows you to navigate and select items using only the keyboard for insertion.
Bug Fixes & Polish
- Fixed popup tooltip; added multilingual support.
- Remove emoji toast: Now change emojis in toast messages to Google Material Symbols.
- File tree filter: Clicking the filter icon will show only supported files.
2.1 Beta4
Bug Fixes & Polish
- Add Sidebar Shortcuts: File Tree is ALT+1, Outline is ALT+2, Search is ALT+3.
- Sidebar Keyboard Navigation: Tab key moves to child elements; arrow keys move through the entire sidebar.
- Improve Sidebar - Outline Formatting: Bold text and font size are differentiated based on headings, which can be toggled on or off using format buttons.
- TASK format rendering: Unnecessary • was attached. It has now been removed and renders as intended.
(C) 2026 DINKI'ssTyle. All rights reserved.
댓글 (0)
- 아직 댓글이 없습니다. 첫 댓글을 작성해보세요!
댓글을 작성하려면 이 필요합니다.