fix replace code with applicable language postfix

This commit is contained in:
Randell Dawson
2019-06-20 17:40:38 -07:00
committed by Kristofer Koishigawa
parent 4f83b58aa6
commit 3f56cf6f54
4 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@ localeTitle: استخدام محلل الجسم إلى Parse POST الطلبات
يجب إضافة محلل الجسد بالفعل إلى مشروعك إذا كنت تستخدم النص المتوفر ، ولكن إذا لم يكن كذلك ، فيجب أن يكون موجودًا على النحو التالي:
```code
```json
"dependencies": {
"body-parser": "^1.4.3",
...

View File

@ -176,7 +176,7 @@ and (orientation: landscape) {
يمكنك أيضًا تعيين الحد الأدنى والحد الأقصى للعرض ، والذي يتيح لك إجراء التجارب باستخدام نطاقات مختلفة. هذا واحد تقريبا يطلق بين الهاتف smar وأكبر حجم سطح المكتب وأحجام الشاشة
```code
```css
@media only screen and (min-width: 700px) and (max-width: 1500px) {
something {
something: something;

View File

@ -11,6 +11,6 @@ Note that there is an issue with Glitch, where the link that clones the specific
You should go over to the `package.json` file in your project. As mentioned in the instructional section of the lesson, JSON is written in key pairs like this:
```code
```json
"author": "Jane Doe",
```

View File

@ -168,7 +168,7 @@ body {
```
Breakpoints that are based on content as opposed to device are less complicated. Here's a simple snippet that triggers when the device's width is upward of ```code 700px``` roughly smart-phone screen sized
Breakpoints that are based on content as opposed to device are less complicated. Here's a simple snippet that triggers when the device's width is upward of `700px` roughly smart-phone screen sized
```css
@media only screen and (min-width: 700px) {