-
-
Notifications
You must be signed in to change notification settings - Fork 44
Wrong formatted syntax in all string functions #270
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
Comments
I noticed that too. Some of these were fixed in the reference-en repository, but I think they went the wrong way by removing the backticks and leaving the code fences, contrary to the standard established by the sample reference page. I was going to cherry pick those commits to this repository, but then I thought that I wouldn't bother and instead wait for it to be fixed properly when arduino/reference-en#559 is merged. I'm not sure how long it will be before that happens, so it might make sense to go ahead and fix the issue right away instead of waiting. |
I will check this and try to provide a fix. I'm not completely sure what the problem is there, however. I mean, the "`" should be automatically rendered as code, shouldn't it? |
Ah, I misspoke, I was thinking of the same problem as it occurs in the "Characters" functions: Here's the pull request that "fixed" those functions in the reference-en repository: arduino/reference-en#471 However, the fix was to remove the backquotes and leave the code fencing like this: [source,arduino]
----
isAlphaNumeric(thisChar)
---- which renders like this:
However, if you look at the sample reference page, you can see that the code fencing should have been removed and the backquotes left instead: `isAlphaNumeric(thisChar)` which renders like this: |
@per1234 Thank you for the investigation. I will change this. |
The text was updated successfully, but these errors were encountered: