mirror of
https://github.com/Insality/druid.git
synced 2025-09-27 10:02:18 +02:00
Solve #219 Add utf8 native library support
This commit is contained in:
@@ -2,8 +2,9 @@
|
||||
-- Author: Britzl
|
||||
-- Modified by: Insality
|
||||
|
||||
local utf8 = require("druid.system.utf8")
|
||||
local tags = require("druid.custom.rich_text.rich_text.tags")
|
||||
local utf8_lua = require("druid.system.utf8")
|
||||
local utf8 = utf8 or utf8_lua
|
||||
|
||||
local M = {}
|
||||
|
||||
|
@@ -4,7 +4,8 @@
|
||||
|
||||
local helper = require("druid.helper")
|
||||
local parser = require("druid.custom.rich_text.rich_text.parse")
|
||||
local utf8 = require("druid.system.utf8")
|
||||
local utf8_lua = require("druid.system.utf8")
|
||||
local utf8 = utf8 or utf8_lua
|
||||
|
||||
local M = {}
|
||||
|
||||
|
Reference in New Issue
Block a user