Skip to content

Commit 8278c9c

Browse files
authored
Add styles & cleanup structure (#114)
* Add styles to quarto outputs * Cleanup folder structure & remove unused assets
1 parent bbfe684 commit 8278c9c

24 files changed

+47
-105
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,5 @@ index.log
1414
index.tex
1515
/.quarto/
1616
/site_libs/
17+
/index_files/
18+
/docs/*

.proselint/proselint/config

Lines changed: 0 additions & 12 deletions
This file was deleted.

_layouts/ebook/pdf_footer.html

Lines changed: 0 additions & 6 deletions
This file was deleted.

_quarto.yml

Lines changed: 39 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ book:
1717
- index.md
1818
- part: "Introduction"
1919
chapters:
20-
- src/first_steps/overview.md
21-
- src/first_steps/getting_rizin.md
22-
- src/first_steps/compilation_portability.md
23-
- src/first_steps/windows_compilation.md
24-
- src/first_steps/compilation_android.md
20+
- src/introduction/overview.md
21+
- src/introduction/getting_rizin.md
22+
- src/introduction/compilation_portability.md
23+
- src/introduction/windows_compilation.md
24+
- src/introduction/compilation_android.md
2525

2626
- part: "First Steps"
2727
chapters:
@@ -73,11 +73,13 @@ book:
7373
- src/search_bytes/backward_search.md
7474
- src/search_bytes/search_in_assembly.md
7575
- src/search_bytes/searching_aes_keys.md
76+
7677
- part: "Disassembling"
7778
chapters:
7879
- src/disassembling/intro.md
7980
- src/disassembling/adding_metadata.md
8081
- src/disassembling/esil.md
82+
8183
- part: "Analysis"
8284
chapters:
8385
- src/analysis/intro.md
@@ -89,15 +91,17 @@ book:
8991
- src/analysis/syscalls.md
9092
- src/analysis/emulation.md
9193
- src/analysis/symbols.md
92-
- src/signatures/signatures.md
94+
- src/analysis/signatures.md
9395
- src/analysis/graphs.md
9496
- src/analysis/cpu_platform_profiles.md
97+
9598
- part: "Scripting"
9699
chapters:
97100
- src/scripting/intro.md
98101
- src/scripting/loops.md
99102
- src/scripting/macros.md
100103
- src/scripting/rz-pipe.md
104+
101105
- part: "Debugger"
102106
chapters:
103107
- src/debugger/intro.md
@@ -110,11 +114,20 @@ book:
110114
- src/debugger/revdebug.md
111115
- src/debugger/windows_messages.md
112116
- src/debugger/apple.md
117+
113118
- part: "Remote Access"
114119
chapters:
115-
- src/debugger/remoting_capabilities.md
116-
- src/debugger/remote_gdb.md
117-
- src/debugger/windbg.md
120+
- src/remote_access/remoting_capabilities.md
121+
- src/remote_access/remote_gdb.md
122+
- src/remote_access/windbg.md
123+
124+
# To be reviewed, it has been added to
125+
# this yaml if we ever change this.
126+
#
127+
# - part: "Architectures"
128+
# chapters:
129+
# - src/arch/intro.md
130+
# - src/arch/8051.md
118131

119132
- part: "Command Line Tools"
120133
chapters:
@@ -154,6 +167,7 @@ book:
154167
- src/plugins/debug.md
155168
- src/plugins/testing.md
156169
- src/plugins/rz-pm.md
170+
157171
- part: "Crackmes"
158172
chapters:
159173
- src/crackmes/intro.md
@@ -186,15 +200,30 @@ book:
186200
- src/crackmes/hackthebox/find-the-easy-pass/find-the-validation-routine.md
187201
- src/crackmes/hackthebox/find-the-easy-pass/fire-up-the-debugger.md
188202
- src/crackmes/hackthebox/find-the-easy-pass/bonus.md
203+
189204
- part: "Reference Card"
190205
chapters:
191206
- src/refcard/intro.md
207+
192208
- part: "Acknowledgments"
193209
chapters:
194-
- src/credits/credits.md
210+
- src/acknowledgments/credits.md
195211

196212
format:
197213
html:
214+
highlight-style: github
198215
theme:
199216
light: default
200217
dark: darkly
218+
219+
epub:
220+
highlight-style: github
221+
cover-image: cover.jpg
222+
223+
pdf:
224+
highlight-style: github
225+
documentclass: book
226+
geometry:
227+
- top=30mm
228+
- left=20mm
229+
- heightrounded

book.toml

Lines changed: 0 additions & 10 deletions
This file was deleted.

src/SUMMARY.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@
7171
* [Reverse Debugging](debugger/revdebug.md)
7272
* [Windows Messages](debugger/windows_messages.md)
7373
* [macOS/iOS](debugger/apple.md)
74-
* [Remote Access](debugger/remoting_capabilities.md)
75-
* [Remote GDB](debugger/remote_gdb.md)
76-
* [Remote WinDbg](debugger/windbg.md)
74+
* [Remote Access](remote_access/remoting_capabilities.md)
75+
* [Remote GDB](remote_access/remote_gdb.md)
76+
* [Remote WinDbg](remote_access/windbg.md)
7777
* [Command Line Tools](tools/intro.md)
7878
* [Rz-ax](tools/rz-ax/intro.md)
7979
* [Rz-find](tools/rz-find/intro.md)
File renamed without changes.

src/analysis/code_analysis.md.snippets

Lines changed: 0 additions & 28 deletions
This file was deleted.
File renamed without changes.

src/basic_commands/print_modes.md.snippets

Lines changed: 0 additions & 32 deletions
This file was deleted.

0 commit comments

Comments
 (0)