-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing results in references search #204
Comments
The search index is based on this document. https://basiljs2.netlify.app/reference/lunrjs.data.json I’ll noticed that myself. I’ll investigate |
Note to self. Rename it fun lunr to flexsearch |
Quick followup on this – I'm guessing the search is ignoring any functions that have the same name as a subhead? While trying to search for |
Okay. Thanks. I will review this. I started a rewrite with less Markup and better responsibility. I also will be on parental leave from November till mid January and hope to get this onto the road then. I know you will say: "noooooo not a rewrite!! 😱 " but the code for the current site has gotten so messy that every time I touched one thing something else broke. So I started from scratch with eleventy as SSG and now builds are 10000000000 faster and it is based on the Bulma framework (which is way smarter then I'll ever could write CSS). Anyhow I'll move my current state to the org as soon as I have the base functionality we already have replicated. I will rewrite the search as well and then we can hopefully close this on. |
I first noticed this issue the other week while searching the references for random, which only lists:
Math#Random
(just text, not a link to click on.. should be?)randomSeed(seed)
placeholder(textFrame)
noise(x, [y], [z])
noiseSeed(seed)
.. surprisingly not the
random()
function itself.Did a search today with students for
max
+max()
to demonstrate max of arrays, but the results were only:constrain(aNumber, aMin, aMax)
inspect(obj, [settings])
Searching for
ceil
finds it without an issue, even though they're in the same sub-category...Curious if it's an issue with the inline documentation (don't see a difference in src) or the parsing of it for the search module?
The text was updated successfully, but these errors were encountered: