limina1
7afbffb9b5
Merge master into feature/text-entry
...
Merges 38 commits from master including:
- New Alexandria component library (src/lib/a/)
- UI updates and styling improvements
- Route reorganization (my-notes → profile/my-notes)
- Tailwind 4 migration
- New nostr utilities and stores
Conflict Resolutions:
- package.json: Merged dependencies (kept CodeMirror + added Lucide/CVA)
- package-lock.json: Regenerated after dependency merge
- asciidoc_metadata.ts: Kept feature branch's deeper header processing logic
- ZettelEditor.svelte: Kept feature branch's CodeMirror implementation
- compose/+page.svelte: Kept feature branch (removed orphaned publish button)
- my-notes/+page.svelte: Accepted master's location and .ts extensions
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com>
5 months ago
Michael J
c8b06caafd
Merges pull request #67
...
Issue#250
5 months ago
buttercat1791
10195301df
Format files
5 months ago
Nuša Pukšič
ca6797c8f8
Tweaks
5 months ago
Nuša Pukšič
bbf4616a36
Bg color
5 months ago
Nuša Pukšič
af439a588d
Streamline headings and fix brand hover
5 months ago
nusa
eda10fb6fb
Remove comment
5 months ago
Nuša Pukšič
b257ad8a2d
TechStore details
5 months ago
Nuša Pukšič
df8fc381b5
More docs and some styles refactoring
5 months ago
buttercat1791
c06f102e4a
Ran `deno fmt`
5 months ago
buttercat1791
e1714fe190
Add Tailwind dependency
5 months ago
Nuša Pukšič
fff91415dd
Lint components and styles
5 months ago
Nuša Pukšič
62848ed184
Dark mode, unbreak toc
5 months ago
Nuša Pukšič
5a6c2bb171
Hide discussion and center publication
5 months ago
Nuša Pukšič
e667cbd3cb
Unbreak pagination
5 months ago
Nuša Pukšič
a0886aea9b
Publications, part 3
5 months ago
Nuša Pukšič
9ea6e8b3e8
Publications, part 2
5 months ago
Nuša Pukšič
9425026b52
Publications, part 1
5 months ago
Nuša Pukšič
28b5312c33
Minor fixes
5 months ago
Nuša Pukšič
98af866bb5
Article cards
5 months ago
Nuša Pukšič
f0c40bc9ee
Compose
5 months ago
Nuša Pukšič
42215020ca
Moving things around again
5 months ago
Nuša Pukšič
1fd2bea1c4
Profile settings
5 months ago
Nuša Pukšič
bd9dd19066
Fix comment previews
5 months ago
Nuša Pukšič
f8cc80865d
Editor
5 months ago
Nuša Pukšič
4a3b217caf
Stacking layouts
5 months ago
Nuša Pukšič
91f72748ca
Profile preview
5 months ago
Nuša Pukšič
06fb80f73b
Menus
5 months ago
Nuša Pukšič
cdf4fca1ac
Pagination
5 months ago
Nuša Pukšič
d635ffb70c
Restoring some
5 months ago
Nuša Pukšič
47133bd39e
Breaking things...
5 months ago
Nuša Pukšič
da82c85810
Clean up
5 months ago
Nuša Pukšič
a456d28e43
Packages
5 months ago
Nuša Pukšič
106a7665e5
Profile page
5 months ago
Nuša Pukšič
29f19eab93
Profile page
5 months ago
Nuša Pukšič
f156ac7fda
Comment form
5 months ago
Nuša Pukšič
a348d080bd
Search results, partial
5 months ago
Nuša Pukšič
48ef093740
Search form, misc details
5 months ago
Nuša Pukšič
6bee97d1ac
Decouple event search and compose
5 months ago
Nuša Pukšič
b6d0dfb73a
Update, explode and break styles and components
5 months ago
Michael J
9a644383dc
Merges pull request #72
...
[Part 2] #309 Fix Crashing During SSR
5 months ago
buttercat1791
d62bff8236
Turn off SSR for all pages
6 months ago
limina1
2c0959de1c
Merge branch 'master' into feature/text-entry
6 months ago
Michael J
c1efb37db0
Merges pull request #69
...
#309 Fix SSR Crash Bug
6 months ago
buttercat1791
afdbb85971
Disable SSR for publication pages
6 months ago
limina1
846147bef3
add asciidoc_parser
6 months ago
limina1
f60101aef8
fix: resolve AsciiDoc nested content parsing and duplicate events
...
Fixes multiple issues with AsciiDoc hierarchical parsing and preview rendering:
**Content Extraction:**
- Fixed content extraction to include child headers at all parse levels
- Level 3 parsing now properly includes ==== sub headers in === parent content
- Unified content extraction logic stops only at sibling/parent headers
**Event Generation:**
- Fixed collectSectionsAtLevel to include Level 2-N sections for proper hierarchy
- Level 3 parsing creates index events for == sections, content events for === sections
- Maintains NKBIP-01 compliance: parent sections get both index+content events
**Preview Rendering:**
- Fixed heading removal to target specific section titles, not first header found
- === subheader now renders correctly as h3 in preview
- Nested content properly displays in parent sections
**Example Structure (Level 3 parsing):**
```
= title
== test 1 → Index Event (30040) + Content Event (30041)
text
=== subheader → Content Event (30041)
content + nested
==== sub subheader
nested content
== note 2 → Index Event (30040) + Content Event (30041)
text
```
🤖 Generated with [Claude Code](https://claude.ai/code )
Co-Authored-By: Claude <noreply@anthropic.com>
6 months ago
limina1
f985e23ad0
fix: appropriately match content preview for all 30041 events
6 months ago
limina1
27382f4b86
fix: editor correctly identifying and highlighting index events
6 months ago
limina1
50c02c6363
fix: AsciiDoc preview updating alongside new headers
6 months ago