Skip to content

Commit 24b5d6e

Browse files
committed
docs: update links to use .html extensions for consistency
1 parent b05587b commit 24b5d6e

20 files changed

Lines changed: 69 additions & 69 deletions

docs/advanced/array-disk-access.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -453,11 +453,11 @@ Use event scripts to respond to array state changes:
453453
| `unmounting_disk` | Before specific disk unmounts | Release handles |
454454
| `disk_added` | New disk added | Initialize disk |
455455

456-
See [Event Types Reference](../reference/event-types-reference.md) for details.
456+
See [Event Types Reference](../reference/event-types-reference.html) for details.
457457

458458
## Related Topics
459459

460-
- [Event System](../events.md)
461-
- [File System Layout](../filesystem.md)
462-
- [File Path Reference](../reference/file-path-reference.md)
463-
- [Var Array Reference](../reference/var-array-reference.md)
460+
- [Event System](../events.html)
461+
- [File System Layout](../filesystem.html)
462+
- [File Path Reference](../reference/file-path-reference.html)
463+
- [Var Array Reference](../reference/var-array-reference.html)

docs/core/csrf-tokens.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,6 @@ $csrf_token = $var['csrf_token'];
354354

355355
## Related Topics
356356

357-
- [Form Controls](../ui/form-controls.md)
358-
- [JavaScript Patterns](../ui/javascript-patterns.md)
359-
- [Input Validation](../security/input-validation.md)
357+
- [Form Controls](../ui/form-controls.html)
358+
- [JavaScript Patterns](../ui/javascript-patterns.html)
359+
- [Input Validation](../security/input-validation.html)

docs/core/dynamix-framework.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ $network = parse_ini_file('/var/local/emhttp/network.ini', true);
220220

221221
### Common $var Properties
222222

223-
See the complete [Var Array Reference](../reference/var-array-reference.md) for all properties.
223+
See the complete [Var Array Reference](../reference/var-array-reference.html) for all properties.
224224

225225
```php
226226
<?
@@ -431,10 +431,10 @@ $cfg = parse_plugin_cfg("yourplugin");
431431

432432
## Related Topics
433433

434-
- [Plugin Settings Storage](plugin-settings-storage.md)
435-
- [File Path Reference](../reference/file-path-reference.md)
436-
- [Var Array Reference](../reference/var-array-reference.md)
437-
- [Form Controls](../ui/form-controls.md)
434+
- [Plugin Settings Storage](plugin-settings-storage.html)
435+
- [File Path Reference](../reference/file-path-reference.html)
436+
- [Var Array Reference](../reference/var-array-reference.html)
437+
- [Form Controls](../ui/form-controls.html)
438438

439439
## References
440440

docs/core/nchan-websocket.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -463,9 +463,9 @@ curl -s -N "http://localhost/sub/yourplugin"
463463

464464
## Related Topics
465465

466-
- [JavaScript Patterns](../ui/javascript-patterns.md)
467-
- [Dashboard Tiles](../ui/dashboard-tiles.md)
468-
- [Cron Jobs](cron-jobs.md) - For periodic status broadcasts
466+
- [JavaScript Patterns](../ui/javascript-patterns.html)
467+
- [Dashboard Tiles](../ui/dashboard-tiles.html)
468+
- [Cron Jobs](cron-jobs.html) - For periodic status broadcasts
469469

470470
## References
471471

docs/core/notifications-system.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,6 @@ sendNotification(
362362

363363
## Related Topics
364364

365-
- [Event System](events.md)
366-
- [Cron Jobs](cron-jobs.md)
367-
- [rc.d Scripts](rc-d-scripts.md)
365+
- [Event System](events.html)
366+
- [Cron Jobs](cron-jobs.html)
367+
- [rc.d Scripts](rc-d-scripts.html)

docs/core/plugin-settings-storage.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ if (!is_dir($path)) {
145145

146146
## Writing Configuration
147147

148-
When handling form submissions or AJAX writes, validate the CSRF token before saving settings. See [CSRF Tokens](csrf-tokens.md) for the full pattern and background.
148+
When handling form submissions or AJAX writes, validate the CSRF token before saving settings. See [CSRF Tokens](csrf-tokens.html) for the full pattern and background.
149149

150150
### Basic Write Pattern
151151

@@ -449,7 +449,7 @@ $email_notify = $cfg['notifications']['email'];
449449

450450
## Related Topics
451451

452-
- [Input Validation](../security/input-validation.md)
453-
- [File System Layout](../filesystem.md)
454-
- [Form Controls](../ui/form-controls.md)
455-
- [PLG File Reference](../plg-file.md)
452+
- [Input Validation](../security/input-validation.html)
453+
- [File System Layout](../filesystem.html)
454+
- [Form Controls](../ui/form-controls.html)
455+
- [PLG File Reference](../plg-file.html)

docs/distribution/community-applications.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,6 @@ Before submitting, test that your plugin installs correctly:
262262

263263
## Related Topics
264264

265-
- [PLG File Reference](../plg-file.md)
266-
- [Build and Packaging](../build-and-packaging.md)
267-
- [Plugin Lifecycle](../advanced/update-mechanisms.md)
265+
- [PLG File Reference](../plg-file.html)
266+
- [Build and Packaging](../build-and-packaging.html)
267+
- [Plugin Lifecycle](../advanced/update-mechanisms.html)

docs/events.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -424,6 +424,6 @@ done
424424

425425
## Next Steps
426426

427-
- Learn about [Page Files](page-files.md) for creating the web UI
428-
- See [Shell Scripts](shell-scripts.md) for more scripting patterns
429-
- Check [Best Practices](best-practices.md) for additional tips
427+
- Learn about [Page Files](page-files.html) for creating the web UI
428+
- See [Shell Scripts](shell-scripts.html) for more scripting patterns
429+
- Check [Best Practices](best-practices.html) for additional tips

docs/examples.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,6 @@ Have a well-documented plugin? Consider:
259259

260260
## See Also
261261

262-
- [Getting Started](getting-started.md) - Build your first plugin
263-
- [Best Practices](best-practices.md) - Tips from experienced developers
264-
- [PLG File Reference](plg-file.md) - Understanding the installer
262+
- [Getting Started](getting-started.html) - Build your first plugin
263+
- [Best Practices](best-practices.html) - Tips from experienced developers
264+
- [PLG File Reference](plg-file.html) - Understanding the installer

docs/filesystem.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -398,6 +398,6 @@ In your README, tell users where data is stored:
398398

399399
## Next Steps
400400

401-
- Learn about [PLG File Structure](plg-file.md) for installation
402-
- See [Packaging](packaging.md) for creating `.txz` packages
403-
- Check [Configuration Files](config-files.md) for settings management
401+
- Learn about [PLG File Structure](plg-file.html) for installation
402+
- See [Packaging](packaging.html) for creating `.txz` packages
403+
- Check [Configuration Files](config-files.html) for settings management

0 commit comments

Comments
 (0)