Skip to content

Instantly share code, notes, and snippets.

@belachkar
Last active October 28, 2019 21:09
Show Gist options
  • Save belachkar/1b4445d69281ef20dfdbc412e8b91315 to your computer and use it in GitHub Desktop.
Save belachkar/1b4445d69281ef20dfdbc412e8b91315 to your computer and use it in GitHub Desktop.
كيفية تضمين الكود بالطريقة الصحيحة في المواضيع و التعليقات

كيفية تضمين الكود بالطريقة الصحيحة في المواضيع و التعليقات

لكي تسهل قرائة الكود و الاجابة عبر نسخه عوض لصق الصور
يكتب الكود على الشكل التالي :

```<Programming language>
Your code
```

Java

عند كتابة التعليق نكتب

```java
public class HelloWorld
{
    public static void main(String[] args) {
        System.out.println("Hello World!");
    }
}
```

فتصبح

public class HelloWorld
{
	public static void main(String[] args) {
		System.out.println("Hello World!");
	}
}

Python

```python
list1 = [1, 3, 5, 2]
m = max(list1)
list1.remove(m)
print(list1)
```

تصبح

list1 = [1, 3, 5, 2]
m = max(list1)
list1.remove(m)
print(list1)

JavaScript

```javascript
const facebookProfile = {
    name: "Ali",
    friends: 3,
    messages: ["Come on", "Big brother"],
    postMessage: (msg) => facebookProfile.messages.push(msg),
    deleteMessage: (index) => facebookProfile.messages.splice(index, 1),
    addFriend: () => facebookProfile.friends++,
    removeFriend: () => facebookProfile.friends--
};
```

تصبح

const facebookProfile = {
    name: "Ali",
    friends: 3,
    messages: ["Come on", "Big brother"],
    postMessage: (msg) => facebookProfile.messages.push(msg),
    deleteMessage: (index) => facebookProfile.messages.splice(index, 1),
    addFriend: () => facebookProfile.friends++,
    removeFriend: () => facebookProfile.friends--
};

XML

```XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <TextView android:text="Happy Birthday YOURFRIENDHERE"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</RelativeLayout>
```

تصبح

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <TextView android:text="Happy Birthday YOURFRIENDHERE"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</RelativeLayout>

يجب وضع اسم البرمجة "python, javascript, xml, html, css..." بعد 3 علامات ``` و ليس '''
ثم اقفال الكود
يتحول الكود تلقا الى html
أرجو أن يكون الموضوع قد نال اعجابكم 😁
ان أردتم المزيد حول الموضوع المرجو الابلاغ
حظا موفقا 👊

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment