Skip to content

Commit e919a42

Browse files
refactor: move most top level modules into core directory
1 parent 7718ee8 commit e919a42

26 files changed

+44
-44
lines changed

benches/util.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---@module 'luassert'
22

3-
local ui = require('render-markdown.ui')
3+
local ui = require('render-markdown.core.ui')
44
local eq = assert.are.same
55
local truthy = assert.truthy
66

doc/render-markdown.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*render-markdown.txt* For 0.10.0 Last change: 2024 August 25
1+
*render-markdown.txt* For 0.10.0 Last change: 2024 August 26
22

33
==============================================================================
44
Table of Contents *render-markdown-table-of-contents*

lua/render-markdown/context.lua renamed to lua/render-markdown/core/context.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
local str = require('render-markdown.str')
2-
local util = require('render-markdown.util')
1+
local str = require('render-markdown.core.str')
2+
local util = require('render-markdown.core.util')
33

44
---@class render.md.Context
55
---@field private buf integer
File renamed without changes.

lua/render-markdown/list.lua renamed to lua/render-markdown/core/list.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
local logger = require('render-markdown.logger')
2-
local util = require('render-markdown.util')
1+
local logger = require('render-markdown.core.logger')
2+
local util = require('render-markdown.core.util')
33

44
---@class render.md.Marks
55
---@field private marks render.md.Mark[]
File renamed without changes.

0 commit comments

Comments
 (0)