Skip to content

Commit bb57504

Browse files
merging all conflicts
2 parents 8ac2f47 + b8b3db7 commit bb57504

File tree

7 files changed

+151
-14
lines changed

7 files changed

+151
-14
lines changed

content/community/conferences.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ April 24-26 in Helsinki, Finland
1717

1818
[Website](https://react-finland.fi/) - [Twitter](https://twitter.com/ReactFinland)
1919

20-
### ReactJS Girls Conference
20+
### ReactJS Girls Conference {#reactjs-girls-conference}
2121
May 3, 2019 in London, UK
2222

2323
[Website](https://reactjsgirls.com/) - [Twitter](https://twitter.com/reactjsgirls)
@@ -47,7 +47,7 @@ June 21, 2019 Chicago, Illinois USA
4747

4848
[Website](https://reactloop.com) - [Twitter](https://twitter.com/ReactLoop)
4949

50-
### Chain React 2019
50+
### Chain React 2019 {#chain-react-2019}
5151
July 11-12, 2019. Portland, OR, USA.
5252

5353
[Website](https://infinite.red/ChainReactConf)
@@ -72,6 +72,11 @@ September 13th, 2019. New York, USA
7272

7373
[Website](https://reactnewyork.com/) - [Twitter](https://twitter.com/reactnewyork)
7474

75+
### React Boston 2019 {#react-boston-2019}
76+
September 21-22, 2019 in Boston, Massachusetts USA
77+
78+
[Website](https://www.reactboston.com/) - [Twitter](https://twitter.com/reactboston)
79+
7580
### React India 2019 {#react-india-2019}
7681
September 26-28, 2019 in Goa, India
7782

@@ -379,4 +384,4 @@ April 4-5, 2019 in Kraków, Poland
379384
### React Amsterdam 2019 {#react-amsterdam-2019}
380385
April 12, 2019 in Amsterdam, The Netherlands
381386

382-
[Website](https://react.amsterdam) - [Twitter](https://twitter.com/reactamsterdam) - [Facebook](https://www.facebook.com/reactamsterdam) - [Videos](https://youtube.com/c/ReactConferences)
387+
[Website](https://react.amsterdam) - [Twitter](https://twitter.com/reactamsterdam) - [Facebook](https://www.facebook.com/reactamsterdam) - [Videos](https://youtube.com/c/ReactConferences)

content/docs/getting-started.md

+4
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,11 @@ Alcuni talvolta trovano che libri di terze parti e videocorsi siano di maggiore
9999

100100
### Concetti Avanzati {#advanced-concepts}
101101

102+
<<<<<<< HEAD
102103
Una volta che hai imparato i [concetti principali](#main-concepts) ed utilizzato React per un po', potrai trovare interessanti alcuni temi più avanzati. Questa sezione ti introdurrà alle funzioni più potenti ma meno utilizzate in React come [context](/docs/context.html) e [refs](/docs/refs-and-the-dom.html).
104+
=======
105+
Once you're comfortable with the [main concepts](/docs/hello-world.html) and played with React a little bit, you might be interested in more advanced topics. This section will introduce you to the powerful, but less commonly used React features like [context](/docs/context.html) and [refs](/docs/refs-and-the-dom.html).
106+
>>>>>>> b8b3db7acbba117addeea8a7fb86957eb046d7ce
103107
104108
### API di Riferimento {#api-reference}
105109

content/languages.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
translated_name: বাংলা
2424
code: bn
2525
status: 0
26+
- name: Catalan
27+
translated_name: Català
28+
code: ca
29+
status: 0
2630
- name: German
2731
translated_name: Deutsch
2832
code: de
@@ -99,6 +103,10 @@
99103
translated_name: മലയാളം
100104
code: ml
101105
status: 0
106+
- name: Mongolian
107+
translated_name: Монгол хэл
108+
code: mn
109+
status: 0
102110
- name: Nepali
103111
translated_name: नेपाली
104112
code: ne
@@ -110,7 +118,7 @@
110118
- name: Polish
111119
translated_name: Polski
112120
code: pl
113-
status: 1
121+
status: 2
114122
- name: Portuguese (Brazil)
115123
translated_name: Português do Brasil
116124
code: pt-br

gatsby-config.js

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ module.exports = {
5555
maxWidth: 840,
5656
},
5757
},
58+
'gatsby-remark-external-links',
5859
'gatsby-remark-header-custom-ids',
5960
{
6061
resolve: 'gatsby-remark-code-repls',

package.json

+4
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@
3232
"gatsby-remark-code-repls": "^2.0.0",
3333
"gatsby-remark-copy-linked-files": "^2.0.0",
3434
"gatsby-remark-embed-snippet": "^3.0.0",
35+
<<<<<<< HEAD
3536
"gatsby-remark-embedded-codesandbox": "^1.2.0",
37+
=======
38+
"gatsby-remark-external-links": "^0.0.4",
39+
>>>>>>> b8b3db7acbba117addeea8a7fb86957eb046d7ce
3640
"gatsby-remark-images": "^2.0.0",
3741
"gatsby-remark-prismjs": "^3.0.2",
3842
"gatsby-remark-responsive-iframe": "^2.0.0",

src/theme.js

+43-9
Original file line numberDiff line numberDiff line change
@@ -285,15 +285,24 @@ const sharedStyles = {
285285
},
286286

287287
'& h2': {
288-
borderTop: `1px solid ${colors.divider}`,
289-
marginTop: 44,
290-
paddingTop: 40,
288+
'::before': {
289+
content: ' ',
290+
display: 'block',
291+
borderBottom: `1px solid ${colors.divider}`,
292+
paddingTop: 44,
293+
marginBottom: 40,
294+
},
295+
291296
lineHeight: 1.2,
292297

293298
':first-child': {
294-
borderTop: 0,
295-
marginTop: 0,
296-
paddingTop: 0,
299+
'::before': {
300+
content: ' ',
301+
display: 'block',
302+
borderBottom: 0,
303+
paddingTop: 40,
304+
marginTop: -80,
305+
},
297306
},
298307

299308
[media.lessThan('large')]: {
@@ -310,7 +319,12 @@ const sharedStyles = {
310319
},
311320

312321
'& h3': {
313-
paddingTop: 45,
322+
'::before': {
323+
content: ' ',
324+
display: 'block',
325+
paddingTop: 90,
326+
marginTop: -45,
327+
},
314328

315329
[media.lessThan('small')]: {
316330
overflowWrap: 'break-word',
@@ -324,14 +338,25 @@ const sharedStyles = {
324338
},
325339

326340
'& h2 + h3, & h2 + h3:first-of-type': {
327-
paddingTop: 30,
341+
'::before': {
342+
content: ' ',
343+
display: 'block',
344+
paddingTop: 60,
345+
marginTop: -30,
346+
},
328347
},
329348

330349
'& h4': {
350+
'::before': {
351+
content: ' ',
352+
display: 'block',
353+
paddingTop: 100,
354+
marginTop: -50,
355+
},
356+
331357
fontSize: 20,
332358
color: colors.subtle,
333359
lineHeight: 1.3,
334-
marginTop: 50,
335360
fontWeight: 400,
336361
},
337362

@@ -414,6 +439,15 @@ const sharedStyles = {
414439
'& .gatsby-highlight + blockquote': {
415440
marginTop: 40,
416441
},
442+
443+
'& .gatsby-highlight + h4': {
444+
'::before': {
445+
content: ' ',
446+
display: 'block',
447+
paddingTop: 85,
448+
marginTop: -60,
449+
},
450+
},
417451
},
418452
};
419453

yarn.lock

+82-1
Original file line numberDiff line numberDiff line change
@@ -5749,6 +5749,7 @@ gatsby-remark-embed-snippet@^3.0.0:
57495749
parse-numeric-range "^0.0.2"
57505750
unist-util-map "^1.0.3"
57515751

5752+
<<<<<<< HEAD
57525753
gatsby-remark-embedded-codesandbox@^1.2.0:
57535754
version "1.2.0"
57545755
resolved "https://registry.yarnpkg.com/gatsby-remark-embedded-codesandbox/-/gatsby-remark-embedded-codesandbox-1.2.0.tgz#8acbb7bbeea3ced8209a0a6133adf65662c5ab27"
@@ -5758,6 +5759,16 @@ gatsby-remark-embedded-codesandbox@^1.2.0:
57585759
lz-string "^1.4.4"
57595760
query-string "^6.0.0"
57605761
unist-util-map "^1.0.3"
5762+
=======
5763+
gatsby-remark-external-links@^0.0.4:
5764+
version "0.0.4"
5765+
resolved "https://registry.yarnpkg.com/gatsby-remark-external-links/-/gatsby-remark-external-links-0.0.4.tgz#85b98c1e9dacfaa58085319648c904ff3cab42f0"
5766+
dependencies:
5767+
babel-runtime "^6.26.0"
5768+
is-relative-url "^2.0.0"
5769+
unist-util-find "^1.0.1"
5770+
unist-util-visit "^1.1.3"
5771+
>>>>>>> b8b3db7acbba117addeea8a7fb86957eb046d7ce
57615772

57625773
gatsby-remark-images@^2.0.0:
57635774
version "2.0.4"
@@ -8628,6 +8639,10 @@ lodash.isstring@^4.0.1:
86288639
resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451"
86298640
integrity sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=
86308641

8642+
lodash.iteratee@^4.5.0:
8643+
version "4.7.0"
8644+
resolved "https://registry.yarnpkg.com/lodash.iteratee/-/lodash.iteratee-4.7.0.tgz#be4177db289a8ccc3c0990f1db26b5b22fc1554c"
8645+
86318646
lodash.kebabcase@^4.1.1:
86328647
version "4.1.1"
86338648
resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36"
@@ -8728,6 +8743,10 @@ loglevel@^1.4.1:
87288743
resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.1.tgz#e0fc95133b6ef276cdc8887cdaf24aa6f156f8fa"
87298744
integrity sha1-4PyVEztu8nbNyIh82vJKpvFW+Po=
87308745

8746+
longest-streak@^1.0.0:
8747+
version "1.0.0"
8748+
resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-1.0.0.tgz#d06597c4d4c31b52ccb1f5d8f8fe7148eafd6965"
8749+
87318750
longest-streak@^2.0.1:
87328751
version "2.0.2"
87338752
resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.2.tgz#2421b6ba939a443bb9ffebf596585a50b4c38e2e"
@@ -8856,6 +8875,10 @@ markdown-escapes@^1.0.0:
88568875
resolved "https://registry.yarnpkg.com/markdown-escapes/-/markdown-escapes-1.0.2.tgz#e639cbde7b99c841c0bacc8a07982873b46d2122"
88578876
integrity sha512-lbRZ2mE3Q9RtLjxZBZ9+IMl68DKIXaVAhwvwn9pmjnPLS0h/6kyBMgNhqi1xFJ/2yv6cSyv0jbiZavZv93JkkA==
88588877

8878+
markdown-table@^0.4.0:
8879+
version "0.4.0"
8880+
resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-0.4.0.tgz#890c2c1b3bfe83fb00e4129b8e4cfe645270f9d1"
8881+
88598882
markdown-table@^1.1.0:
88608883
version "1.1.2"
88618884
resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-1.1.2.tgz#c78db948fa879903a41bce522e3b96f801c63786"
@@ -9744,7 +9767,7 @@ on-headers@~1.0.1:
97449767
resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7"
97459768
integrity sha1-ko9dD0cNSTQmUepnlLCFfBAGk/c=
97469769

9747-
once@^1.3.0, once@^1.3.1, once@^1.4.0:
9770+
once@^1.3.0, once@^1.3.1, once@^1.3.3, once@^1.4.0:
97489771
version "1.4.0"
97499772
resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
97509773
integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
@@ -11419,6 +11442,20 @@ [email protected]:
1141911442
babel-runtime "^6.23.0"
1142011443
fbjs "^0.8.14"
1142111444

11445+
remark-parse@^1.1.0:
11446+
version "1.1.0"
11447+
resolved "http://registry.npmjs.org/remark-parse/-/remark-parse-1.1.0.tgz#c3ca10f9a8da04615c28f09aa4e304510526ec21"
11448+
dependencies:
11449+
collapse-white-space "^1.0.0"
11450+
extend "^3.0.0"
11451+
parse-entities "^1.0.2"
11452+
repeat-string "^1.5.4"
11453+
trim "0.0.1"
11454+
trim-trailing-lines "^1.0.0"
11455+
unherit "^1.0.4"
11456+
unist-util-remove-position "^1.0.0"
11457+
vfile-location "^2.0.0"
11458+
1142211459
remark-parse@^5.0.0:
1142311460
version "5.0.0"
1142411461
resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-5.0.0.tgz#4c077f9e499044d1d5c13f80d7a98cf7b9285d95"
@@ -11447,6 +11484,19 @@ remark-retext@^3.1.0:
1144711484
dependencies:
1144811485
mdast-util-to-nlcst "^3.2.0"
1144911486

11487+
remark-stringify@^1.1.0:
11488+
version "1.1.0"
11489+
resolved "http://registry.npmjs.org/remark-stringify/-/remark-stringify-1.1.0.tgz#a7105e25b9ee2bf9a49b75d2c423f11b06ae2092"
11490+
dependencies:
11491+
ccount "^1.0.0"
11492+
extend "^3.0.0"
11493+
longest-streak "^1.0.0"
11494+
markdown-table "^0.4.0"
11495+
parse-entities "^1.0.2"
11496+
repeat-string "^1.5.4"
11497+
stringify-entities "^1.0.1"
11498+
unherit "^1.0.4"
11499+
1145011500
remark-stringify@^5.0.0:
1145111501
version "5.0.0"
1145211502
resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-5.0.0.tgz#336d3a4d4a6a3390d933eeba62e8de4bd280afba"
@@ -11467,6 +11517,14 @@ remark-stringify@^5.0.0:
1146711517
unherit "^1.0.4"
1146811518
xtend "^4.0.1"
1146911519

11520+
remark@^5.0.1:
11521+
version "5.1.0"
11522+
resolved "http://registry.npmjs.org/remark/-/remark-5.1.0.tgz#cb463bd3dbcb4b99794935eee1cf71d7a8e3068c"
11523+
dependencies:
11524+
remark-parse "^1.1.0"
11525+
remark-stringify "^1.1.0"
11526+
unified "^4.1.1"
11527+
1147011528
remark@^9.0.0:
1147111529
version "9.0.0"
1147211530
resolved "https://registry.yarnpkg.com/remark/-/remark-9.0.0.tgz#c5cfa8ec535c73a67c4b0f12bfdbd3a67d8b2f60"
@@ -13300,6 +13358,17 @@ unicode-property-aliases-ecmascript@^1.0.4:
1330013358
resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.4.tgz#5a533f31b4317ea76f17d807fa0d116546111dd0"
1330113359
integrity sha512-2WSLa6OdYd2ng8oqiGIWnJqyFArvhn+5vgx5GTxMbUYjCYKUcuKS62YLFF0R/BDGlB1yzXjQOLtPAfHsgirEpg==
1330213360

13361+
unified@^4.1.1:
13362+
version "4.2.1"
13363+
resolved "http://registry.npmjs.org/unified/-/unified-4.2.1.tgz#76ff43aa8da430f6e7e4a55c84ebac2ad2cfcd2e"
13364+
dependencies:
13365+
bail "^1.0.0"
13366+
extend "^3.0.0"
13367+
has "^1.0.1"
13368+
once "^1.3.3"
13369+
trough "^1.0.0"
13370+
vfile "^1.0.0"
13371+
1330313372
unified@^6.0.0, unified@^6.1.5:
1330413373
version "6.2.0"
1330513374
resolved "https://registry.yarnpkg.com/unified/-/unified-6.2.0.tgz#7fbd630f719126d67d40c644b7e3f617035f6dba"
@@ -13368,6 +13437,14 @@ unist-builder@^1.0.1:
1336813437
dependencies:
1336913438
object-assign "^4.1.0"
1337013439

13440+
unist-util-find@^1.0.1:
13441+
version "1.0.1"
13442+
resolved "https://registry.yarnpkg.com/unist-util-find/-/unist-util-find-1.0.1.tgz#1062bbb6928c7a97c6adc89b53745d4c46c222a2"
13443+
dependencies:
13444+
lodash.iteratee "^4.5.0"
13445+
remark "^5.0.1"
13446+
unist-util-visit "^1.1.0"
13447+
1337113448
unist-util-generated@^1.1.0:
1337213449
version "1.1.2"
1337313450
resolved "https://registry.yarnpkg.com/unist-util-generated/-/unist-util-generated-1.1.2.tgz#8b993f9239d8e560be6ee6e91c3f7b7208e5ce25"
@@ -13658,6 +13735,10 @@ vfile-message@^1.0.0:
1365813735
dependencies:
1365913736
unist-util-stringify-position "^1.1.1"
1366013737

13738+
vfile@^1.0.0:
13739+
version "1.4.0"
13740+
resolved "http://registry.npmjs.org/vfile/-/vfile-1.4.0.tgz#c0fd6fa484f8debdb771f68c31ed75d88da97fe7"
13741+
1366113742
vfile@^2.0.0:
1366213743
version "2.3.0"
1366313744
resolved "https://registry.yarnpkg.com/vfile/-/vfile-2.3.0.tgz#e62d8e72b20e83c324bc6c67278ee272488bf84a"

0 commit comments

Comments
 (0)