Skip to content

Commit 9e6e80b

Browse files
committed
v1.0.10
## [1.0.10] - 2026-04-20 ### Changed - Homebrew installs now point to Apex 1.0.9 with the updated macOS release artifact checksum. ### New - Supports Obsidian embed transclusion syntax ![[file]] and ![[file#Section]] with section extraction. - Section-targeted includes now work consistently across Marked, MultiMarkdown, and iA Writer include syntaxes. ### Fixed - Obsidian embeds now respect --wikilink-extension for extensionless targets and fall back to .md when the configured extension file does not exist. - Wiki link parsing no longer rewrites ![[...]] embeds into !<a ...> output. [1.0.10]: https://github.com/ApexMarkdown/apex/releases/tag/v1.0.10
1 parent 2501c15 commit 9e6e80b

6 files changed

Lines changed: 24 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
All 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

28772893
Developed 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

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if(POLICY CMP0000)
66
endif()
77
set(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
1212
set(CMAKE_C_STANDARD 99)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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
305305
One Markdown processor to rule them all
306306
307307
Project homepage: https://github.com/ApexMarkdown/apex

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.9
1+
1.0.10

include/apex/apex.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

src/_README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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

0 commit comments

Comments
 (0)