File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33All notable changes to Apex will be documented in this file.
44
5+ ## [ 1.0.10] - 2026-04-20
6+
7+ ### Changed
8+
9+ - Homebrew installs now point to Apex 1.0.9 with the updated macOS release artifact checksum.
10+
11+ ### New
12+
13+ - Supports Obsidian embed transclusion syntax ![ [ file]] and ![ [ file#Section]] with section extraction.
14+ - Section-targeted includes now work consistently across Marked, MultiMarkdown, and iA Writer include syntaxes.
15+
16+ ### Fixed
17+
18+ - Obsidian embeds now respect --wikilink-extension for extensionless targets and fall back to .md when the configured extension file does not exist.
19+ - Wiki link parsing no longer rewrites ![ [ ...]] embeds into !<a ...> output.
20+
521## [ 1.0.9] - 2026-04-19
622
723### Changed
@@ -2876,6 +2892,7 @@ Based on [cmark-gfm](https://github.com/github/cmark-gfm) by GitHub
28762892
28772893Developed for [ Marked] ( https://marked2app.com ) by Brett Terpstra
28782894
2895+ [ 1.0.10 ] : https://github.com/ApexMarkdown/apex/releases/tag/v1.0.10
28792896[ 1.0.9 ] : https://github.com/ApexMarkdown/apex/releases/tag/v1.0.9
28802897[ 1.0.8 ] : https://github.com/ApexMarkdown/apex/releases/tag/v1.0.8
28812898[ 1.0.7 ] : https://github.com/ApexMarkdown/apex/releases/tag/v1.0.7
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ if(POLICY CMP0000)
66endif ()
77set (CMAKE_POLICY_VERSION_MINIMUM 3.5 CACHE STRING "Minimum CMake policy version" FORCE )
88
9- project (apex VERSION 1.0.9 LANGUAGES C )
9+ project (apex VERSION 1.0.10 LANGUAGES C )
1010
1111# Set C standard
1212set (CMAKE_C_STANDARD 99)
Original file line number Diff line number Diff line change 11
2- [ ![ Version: 1.0.8 ] ( https://img.shields.io/badge/Version-1.0.8 -528c9e )] ( https://github.com/ApexMarkdown/apex/releases/latest ) ![ ] ( https://img.shields.io/badge/CMake-064F8C?style=for-the-badge&logo=cmake&logoColor=white ) [ ![ License: MIT] ( https://img.shields.io/badge/License-MIT-yellow.svg )] ( https://opensource.org/licenses/MIT ) <!-- TESTS_BADGE--> ![ Tests passing 0/1541 ] ( https://img.shields.io/badge/Tests-0/1541 -f97373 ) <!-- END TESTS_BADGE-->
2+ [ ![ Version: 1.0.9 ] ( https://img.shields.io/badge/Version-1.0.9 -528c9e )] ( https://github.com/ApexMarkdown/apex/releases/latest ) ![ ] ( https://img.shields.io/badge/CMake-064F8C?style=for-the-badge&logo=cmake&logoColor=white ) [ ![ License: MIT] ( https://img.shields.io/badge/License-MIT-yellow.svg )] ( https://opensource.org/licenses/MIT ) <!-- TESTS_BADGE--> ![ Tests passing 0/1558 ] ( https://img.shields.io/badge/Tests-0/1558 -f97373 ) <!-- END TESTS_BADGE-->
33
44
55# Apex
@@ -301,7 +301,7 @@ apex input.md --mode kramdown
301301### All Options
302302
303303```
304- Apex Markdown Processor v1.0.8
304+ Apex Markdown Processor v1.0.9
305305One Markdown processor to rule them all
306306
307307Project homepage: https://github.com/ApexMarkdown/apex
Original file line number Diff line number Diff line change 1- 1.0.9
1+ 1.0.10
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ typedef struct cmark_node cmark_node;
2121
2222#define APEX_VERSION_MAJOR 1
2323#define APEX_VERSION_MINOR 0
24- #define APEX_VERSION_PATCH 9
25- #define APEX_VERSION_STRING "1.0.9 "
24+ #define APEX_VERSION_PATCH 10
25+ #define APEX_VERSION_STRING "1.0.10 "
2626
2727/**
2828 * Processor compatibility modes
Original file line number Diff line number Diff line change 11<!-- README-->
2- [ ![ Version: <!-- VER--> 1.0.8 <!-- END VER--> ] (https://img.shields.io/badge/Version- <!-- VER--> 1.0.8 <!-- END VER--> -528c9e)] ( https://github.com/ApexMarkdown/apex/releases/latest ) ![ ] ( https://img.shields.io/badge/CMake-064F8C?style=for-the-badge&logo=cmake&logoColor=white ) [ ![ License: MIT] ( https://img.shields.io/badge/License-MIT-yellow.svg )] ( https://opensource.org/licenses/MIT ) <!-- TESTS_BADGE--> ![ Tests passing 0/1541 ] ( https://img.shields.io/badge/Tests-0/1541 -f97373 ) <!-- END TESTS_BADGE-->
2+ [ ![ Version: <!-- VER--> 1.0.9 <!-- END VER--> ] (https://img.shields.io/badge/Version- <!-- VER--> 1.0.9 <!-- END VER--> -528c9e)] ( https://github.com/ApexMarkdown/apex/releases/latest ) ![ ] ( https://img.shields.io/badge/CMake-064F8C?style=for-the-badge&logo=cmake&logoColor=white ) [ ![ License: MIT] ( https://img.shields.io/badge/License-MIT-yellow.svg )] ( https://opensource.org/licenses/MIT ) <!-- TESTS_BADGE--> ![ Tests passing 0/1558 ] ( https://img.shields.io/badge/Tests-0/1558 -f97373 ) <!-- END TESTS_BADGE-->
33
44<!-- GITHUB-->
55# Apex
You can’t perform that action at this time.
0 commit comments