Skip to content

Commit 4749121

Browse files
committed
Fix: Replace Unicode box-drawing with ASCII
1 parent ea2f536 commit 4749121

1 file changed

Lines changed: 36 additions & 36 deletions

File tree

docs/developer.md

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ This guide covers **pcode-editor version 0.2.28**.
1313
pcode-editor is built with a layered architecture:
1414

1515
```
16-
┌─────────────────────────────────────────────┐
17-
Main Application
18-
(editor_app.cpp)
19-
├─────────────────────────────────────────────┤
20-
Editor Core UI Rendering
21-
(TextEditor) (Dear ImGui)
22-
├─────────────────────────────────────────────┤
23-
Input/Window Management
24-
(GLFW)
25-
├─────────────────────────────────────────────┤
26-
Platform-Specific APIs
27-
(Win32/Wayland/X11/Cocoa)
28-
└─────────────────────────────────────────────┘
16+
+---------------------------------------------+
17+
| Main Application |
18+
| (editor_app.cpp) |
19+
+-------------------------------------+
20+
| Editor Core | UI Rendering |
21+
| (TextEditor) | (Dear ImGui) |
22+
+-------------------------------------+
23+
| Input/Window Management |
24+
| (GLFW) |
25+
+-------------------------------------+
26+
| Platform-Specific APIs |
27+
| (Win32/Wayland/X11/Cocoa) |
28+
+---------------------------------------------+
2929
```
3030

3131
### Source Files
@@ -302,28 +302,28 @@ GIT_TAG v1.91 # Update this
302302

303303
```
304304
pcode-editor/
305-
├── src/
306-
├── main.cpp # Entry point
307-
├── editor_app.h # Class definitions
308-
└── editor_app.cpp # Implementation
309-
310-
├── tests/
311-
└── test_view_features.cpp
312-
313-
├── scripts/
314-
├── build.sh # Universal build
315-
├── build-linux.sh # Linux
316-
├── build-windows.bat # Windows MSVC
317-
└── build-freebsd.sh # BSD
318-
319-
├── .githooks/
320-
└── pre-commit # Build validation
321-
322-
├── CMakeLists.txt
323-
├── pcode-settings.json
324-
├── VERSION
325-
├── LICENSE
326-
└── README.md
305+
+-- src/
306+
| +-- main.cpp # Entry point
307+
| +-- editor_app.h # Class definitions
308+
| +-- editor_app.cpp # Implementation
309+
|
310+
+-- tests/
311+
| +-- test_view_features.cpp
312+
|
313+
+-- scripts/
314+
| +-- build.sh # Universal build
315+
| +-- build-linux.sh # Linux
316+
| +-- build-windows.bat # Windows MSVC
317+
| +-- build-freebsd.sh # BSD
318+
|
319+
+-- .githooks/
320+
| +-- pre-commit # Build validation
321+
|
322+
+-- CMakeLists.txt
323+
+-- pcode-settings.json
324+
+-- VERSION
325+
+-- LICENSE
326+
+-- README.md
327327
```
328328

329329
---
@@ -375,7 +375,7 @@ void EditorApp::start_terminal() {
375375

376376
---
377377

378-
##贡献 Guidelines
378+
## Contribution Guidelines
379379

380380
1. **Fork** the repository
381381
2. **Create** a feature branch

0 commit comments

Comments
 (0)