Documentation
Documentation is a set of information that describes a product to its users, including what it is, how it operates, and how to use it.
Here are 8,729 public repositories matching this topic...
-
Updated
May 15, 2022 - Markdown
Have you read the Contributing Guidelines on issues?
- I have read the Contributing Guidelines on issues.
Motivation
I realized there are a few text labels in our repo that are accidentally not translated. This has happened a few times in the past as well (see #4542). It would be interesti
-
Updated
May 14, 2022 - Ruby
Respectively, we have the following opening PRs from dependabot, where we need to test everything out, as such build scripts, and so on, to make sure that nothing is going to be broken if we merge them in main
:
- #1722
- #1720
- #1706
- #1705
- #1704
- #1703
- #1698
- #1697
- #1724
Anyone feel free to pick it up and update your progress h
Bug Report
-
Updated
May 15, 2022 - Vue
-
Updated
May 9, 2022 - Python
-
Updated
Jan 14, 2022 - JavaScript
-
Updated
May 16, 2022 - TypeScript
-
Updated
May 14, 2022 - Python
-
Updated
May 9, 2022 - JavaScript
-
Updated
Mar 9, 2022 - JavaScript
-
Updated
May 12, 2022
-
Updated
May 15, 2022 - HTML
Current behavior
I think there's a mismatch of environment variables being read by babel (JSX config) and Styleguidist, causing some issues deeper down.
(I've noticed this was raised before but was closed)
- build.js sets the env to be
production
here: https://github.com/styleguidist/react-styleguidist/blob/master/src/s
-
Updated
May 15, 2022 - TypeScript
-
Updated
May 3, 2022 - C++
-
Updated
May 15, 2022 - PHP
-
Updated
Mar 20, 2022 - Go
-
Updated
May 2, 2022
There are a lot of images inside markdown that are either img
tags or markdown images. Need to use next/image component instead of img tags and markdown images.
Edit: These changes are needed for beta.reactjs.org site
-
Updated
Nov 28, 2021
Add GitHub link and/or link to the project site (instead of the typedoc site), to the default theme?
Search Terms
Would it be possible to add a GitHub link and/or a link to the actual site (instead of the typedoc site), to the default theme?
Problem
I find for typedoc sites, I get to the typedoc site, and would like t
-
Updated
May 9, 2022 - JavaScript
MDN URL: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode
What information was incorrect, unhelpful, or incomplete?
function strict() {
// because this is a module, I'm strict by default
}
export default strict;
Specific section or headline?
What did you expect to see?
function strict_function() {
// because this is a module, I'm
-
Updated
May 15, 2022 - Java
- Wikipedia
- Wikipedia
Describe the bug
The
validateArgs
method inlib/router/src/utils.ts
is usingVALIDATION_REGEXP
,NUMBER_REGEXP
,HEX_REGEXP
orCOLOR_REGEXP
pattern to determine whether thestring
value is validated or not, but any string which not match those pattern (like something with+
prefix or some character that is not in Alphabet) will not be validated and be dropped in future actions.