Modul:R:Bailly

Üdvözlöm, Ön a Modul:R:Bailly szó jelentését keresi. A DICTIOUS-ban nem csak a Modul:R:Bailly szó összes szótári jelentését megtalálod, hanem megismerheted az etimológiáját, a jellemzőit és azt is, hogyan kell a Modul:R:Bailly szót egyes és többes számban mondani. Minden, amit a Modul:R:Bailly szóról tudni kell, itt található. A Modul:R:Bailly szó meghatározása segít abban, hogy pontosabban és helyesebben fogalmazz, amikor beszélsz vagy írsz. AModul:R:Bailly és más szavak definíciójának ismerete gazdagítja a szókincsedet, és több és jobb nyelvi forráshoz juttat.

A modult a Modul:R:Bailly/doc lapon tudod dokumentálni

local export = {}

local accent_m = require("Module:0grc-accent")
local lang = require("Module:0languages").getByCode("grc")

function b_search_wrapper(ys,x,L,H)
	local i = b_search(ys,x,L,H)
	return ys - (ys == x and 0 or 1)
end

function b_search(ys, x, L, H)
    if L < 0 then error('L < 0') end
    while L < H do
        M = math.floor((L+H) / 2)
        if ys < x then L = M+1 else H = M end
    end
    return L
 end

function sundesmos(logos, selis)
	local url = "https://archive.org/stream/BaillyDictionnaireGrecFrancais/Bailly_DictionnaireGrecFrancais#page/n"..(selis-1).."/mode/1up"
	local logos_span = '<span class="polytonic" lang="grc">'..logos..'</span>'
	return ''
end

function remove_diacritics(logos) --not used; keeping this function around just in case
	local diacritics = { ={}, ={}, ={}, ={}}           --acute, smooth, rough, circumflex
	local nfd, rv = mw.ustring.toNFD(logos), {}
	local len = mw.ustring.len(nfd)
	for i = 1,len do 
      	c = mw.ustring.sub(nfd,i,i)
	 	if diacritics == nil then 
	 		rv = c end end
	return table.concat(rv)
end


function export.create(frame)
	local args = frame:getParent().args
	local logos = args or mw.title.getCurrentTitle().text
	if lang:findBestScript(logos):getCode() ~= "polytonic" then
		return ''
	end
	local selis = b_search_wrapper(
		mw.loadData("Module:R:Bailly/headwords"),
		mw.ustring.lower(accent_m.strip_accent(logos)),
		1,
		2163
		)
	return sundesmos(logos, selis)
end

return export