Found 91 repositories(showing 30)
zhuochun
✒️ Make Atom a better Markdown/AsciiDoc editor for writers and bloggers
SR-Sunny-Raj
NOTE -: For Hacktoberfest2022 please refer this repository https://github.com/SR-Sunny-Raj/Hacktoberfest2022-for-everyone to make your contribution. If You know the implementation of any DSA related topic/problem then you can contribute it in this repo. Raise Genuine PRs only. Your PRs will be accepted, keep patience. Star this Repo. You aren't allowed to Update README.md. Welcoming developers, content writers, and programming enthusiasts.
SR-Sunny-Raj
Whether you know programming or not you can make your contribution in this repository. Raise Genuine PRs only. Your PRs will be accepted, keep patience. Star this Repo. You aren't allowed to Update README.md. Welcoming developers, content writers, and programming enthusiasts
huangserva
AI驱动的多媒体内容生产skills集合:document-writer(写作)、illustration-generator(配图)、ppt-generator(PPT风格)、podcast-generator(TTS)、remoti on-dev(视频制作)、twitter-crawler(推文爬取)、markdown-illustrator(Markdown配图)、comic-generator(漫画生成)、media-downloader(媒体下载)、tts-script-generator(TTS脚本)、md-t o-pdf(文档转换)、wechat-formatter(微信格式化)、humanizer-zh(中文人性化)、shared-lib(核心API库)
zhuochun
🔧 Toolbar for Markdown Writer Atom Package
lapinvert
`bearbk-converter` is a quick utility that allows you to convert Bear Writer's backup files (.bearbk) into a folder including all your notes as ".txt" or ".md" files, with correct creation/modification dates.
Trust155
--- title: Hello World intro: 'Follow this Hello World exercise to get started with {% data variables.product.product_name %}.' versions: fpt: '*' ghes: '*' ghae: '*' ghec: '*' type: quick_start topics: - Pull requests - Fundamentals miniTocMaxHeadingLevel: 3 --- ## Introduction {% data variables.product.product_name %} is a code hosting platform for version control and collaboration. It lets you and others work together on projects from anywhere. This tutorial teaches you {% data variables.product.product_name %} essentials like repositories, branches, commits, and pull requests. You'll create your own Hello World repository and learn {% data variables.product.product_name %}'s pull request workflow, a popular way to create and review code. In this quickstart guide, you will: * Create and use a repository * Start and manage a new branch * Make changes to a file and push them to {% data variables.product.product_name %} as commits * Open and merge a pull request To complete this tutorial, you need a [{% data variables.product.product_name %} account](http://github.com) and Internet access. You don't need to know how to code, use the command line, or install Git (the version control software that {% data variables.product.product_name %} is built on). If you have a question about any of the expressions used in this guide, head on over to the [glossary](/get-started/quickstart/github-glossary) to find out more about our terminology. ## Creating a repository A repository is usually used to organize a single project. Repositories can contain folders and files, images, videos, spreadsheets, and data sets -- anything your project needs. Often, repositories include a _README_ file, a file with information about your project. _README_ files are written in the plain text Markdown language. You can use this [cheat sheet](https://www.markdownguide.org/cheat-sheet/) to get started with Markdown syntax. {% data variables.product.product_name %} lets you add a _README_ file at the same time you create your new repository. {% data variables.product.product_name %} also offers other common options such as a license file, but you do not have to select any of them now. Your `hello-world` repository can be a place where you store ideas, resources, or even share and discuss things with others. {% data reusables.repositories.create_new %} 1. In the **Repository name** box, enter `hello-world`. 2. In the **Description** box, write a short description. 3. Select **Add a README file**. 4. Select whether your repository will be **Public** or **Private**. 5. Click **Create repository**.  ## Creating a branch Branching lets you have different versions of a repository at one time. By default, your repository has one branch named `main` that is considered to be the definitive branch. You can create additional branches off of `main` in your repository. You can use branches to have different versions of a project at one time. This is helpful when you want to add new features to a project without changing the main source of code. The work done on different branches will not show up on the main branch until you merge it, which we will cover later in this guide. You can use branches to experiment and make edits before committing them to `main`. When you create a branch off the `main` branch, you're making a copy, or snapshot, of `main` as it was at that point in time. If someone else made changes to the `main` branch while you were working on your branch, you could pull in those updates. This diagram shows: * The `main` branch * A new branch called `feature` * The journey that `feature` takes before it's merged into `main`  Have you ever saved different versions of a file? Something like: * `story.txt` * `story-edit.txt` * `story-edit-reviewed.txt` Branches accomplish similar goals in {% data variables.product.product_name %} repositories. Here at {% data variables.product.product_name %}, our developers, writers, and designers use branches for keeping bug fixes and feature work separate from our `main` (production) branch. When a change is ready, they merge their branch into `main`. ### Create a branch 1. Click the **Code** tab of your `hello-world` repository. 2. Click the drop down at the top of the file list that says **main**.  4. Type a branch name, `readme-edits`, into the text box. 5. Click **Create branch: readme-edits from main**.  Now you have two branches, `main` and `readme-edits`. Right now, they look exactly the same. Next you'll add changes to the new branch. ## Making and committing changes When you created a new branch in the previous step, {% data variables.product.product_name %} brought you to the code page for your new `readme-edits` branch, which is a copy of `main`. You can make and save changes to the files in your repository. On {% data variables.product.product_name %}, saved changes are called commits. Each commit has an associated commit message, which is a description explaining why a particular change was made. Commit messages capture the history of your changes so that other contributors can understand what you’ve done and why. 1. Under the `readme-edits` branch you created, click the _README.md_ file. 2. Click {% octicon "pencil" aria-label="The edit icon" %} to edit the file. 3. In the editor, write a bit about yourself. Try using different Markdown elements. 4. In the **Commit changes** box, write a commit message that describes your changes. 5. Click **Commit changes**.  These changes will be made only to the README file on your `readme-edits` branch, so now this branch contains content that's different from `main`. ## Opening a pull request Now that you have changes in a branch off of `main`, you can open a pull request. Pull requests are the heart of collaboration on {% data variables.product.product_name %}. When you open a pull request, you're proposing your changes and requesting that someone review and pull in your contribution and merge them into their branch. Pull requests show diffs, or differences, of the content from both branches. The changes, additions, and subtractions are shown in different colors. As soon as you make a commit, you can open a pull request and start a discussion, even before the code is finished. By using {% data variables.product.product_name %}'s `@mention` feature in your pull request message, you can ask for feedback from specific people or teams, whether they're down the hall or 10 time zones away. You can even open pull requests in your own repository and merge them yourself. It's a great way to learn the {% data variables.product.product_name %} flow before working on larger projects. 1. Click the **Pull requests** tab of your `hello-world` repository. 2. Click **New pull request** 3. In the **Example Comparisons** box, select the branch you made, `readme-edits`, to compare with `main` (the original). 4. Look over your changes in the diffs on the Compare page, make sure they're what you want to submit.  5. Click **Create pull request**. 6. Give your pull request a title and write a brief description of your changes. You can include emojis and drag and drop images and gifs. 7. Optionally, to the right of your title and description, click the {% octicon "gear" aria-label="The Gear icon" %} next to **Reviewers**. **Assignees**, **Labels**, **Projects**, or **Milestone** to add any of these options to your pull request. You do not need to add any yet, but these options offer different ways to collaborate using pull requests. For more information, see "[About pull requests](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests)." 7. Click **Create pull request**. Your collaborators can now review your edits and make suggestions. ## Merging your pull request In this final step, you will merge your `readme-edits` branch into the `main` branch. After you merge your pull request, the changes on your `readme-edits` branch will be incorporated into `main`. Sometimes, a pull request may introduce changes to code that conflict with the existing code on `main`. If there are any conflicts, {% data variables.product.product_name %} will alert you about the conflicting code and prevent merging until the conflicts are resolved. You can make a commit that resolves the conflicts or use comments in the pull request to discuss the conflicts with your team members. In this walk-through, you should not have any conflicts, so you are ready to merge your branch into the main branch. 1. Click **Merge pull request** to merge the changes into `main`.  2. Click **Confirm merge**. You will receive a message that the request was successfully merged and the request was closed. 3. Click **Delete branch**. Now that your pull request is merged and your changes are on `main`, you can safely delete the `readme-edits` branch. If you want to make more changes to your project, you can always create a new branch and repeat this process. ## Next steps By completing this tutorial, you've learned to create a project and make a pull request on {% data variables.product.product_name %}. Here's what you accomplished in this tutorial: * Created an open source repository * Started and managed a new branch * Changed a file and committed those changes to {% data variables.product.product_name %} * Opened and merged a pull request Take a look at your {% data variables.product.product_name %} profile and you'll see your work reflected on your contribution graph. For more information about the power of branches and pull requests, see "[GitHub flow](/get-started/quickstart/github-flow)." For more information about getting started with {% data variables.product.product_name %}, see the other guides in the [getting started quickstart](/get-started/quickstart).
AlejandroME
Repositorio que contiene el código usado para la charla de ScalaMDE de Marzo 2017.
pawantech12
A free-to-use Markdown Editor built with ReactJS and TailwindCSS, offering features like importing/exporting `.md` files, real-time editing with live preview, word/line/character counters, and a copy button for Markdown content. Perfect for developers and writers! 🚀
A multi-agent AI research pipeline built with CrewAI, LangChain Groq, and SerperDevTool. This project orchestrates multiple specialized AI agents (Researcher, Writer, Editor, and Presenter) to collaboratively generate structured research reports. The final output is saved in Markdown (.md) format for easy sharing and documentation.
jeffreya
MD template files to provide information for new APIs to technical writers.
finnegancodes
Simple markdown editor for mac
a4averma
A modern Markdown editor designed for technical writing and note-taking with enhanced formatting support.
Monst3rSec
Virtual Information security policy writer via Claude Agent ( using skill.md file)
mohae
format benchmark results as text, csv, or md and write to an io.Writer
wangmiaozero
vueEditor.md 基于Editor.md的markdown文本编辑器 The open source embeddable online markdown editor (component). http://editor.md.ipandao.com/ markdown editor javascript jquery documentation codemirror katex gfm flowchart sequence-diagram toc marked commonmark markdown-editor markdown-writer
157255
و mainفرع A new branch called feature (because we’re doing ‘feature work’ on this branch) The journey that feature takes before it’s merged into main فرع Have you ever saved different versions of a file? Something like: story.txt story-joe-edit.txt story-joe-edit-reviewed.txt Branches accomplish similar goals in GitHub repositories. Here at GitHub, our developers, writers, and designers use branches for keeping bug fixes and feature work separate from our main (production) branch. When a change is ready, they merge their branch into main. To create a new branch Go to your new repository hello-world. Click the drop down at the top of the file list that says branch: main. Type a branch name, readme-edits, into the new branch text box. Select the blue Create branch box or hit “Enter” on your keyboard. فرع gif Now you have two branches, main and readme-edits. They look exactly the same, but not for long! Next we’ll add our changes to the new branch. Step 3. Make and commit changes Bravo! Now, you’re on the code view for your readme-edits branch, which is a copy of main. Let’s make some edits. On GitHub, saved changes are called commits. Each commit has an associated commit message, which is a description explaining why a particular change was made. Commit messages capture the history of your changes, so other contributors can understand what you’ve done and why. Make and commit changes Click the README.md file. Click the pencil icon in the upper right corner of the file view to edit. In the editor, write a bit about yourself. Write a commit message that describes your changes. Click Commit changes button. ارتكب These changes will be made to just the README file on your readme-edits branch, so now this branch contains content that’s different from main. Step 4. Open a Pull Request Nice edits! Now that you have changes in a branch off of main, you can
pymmcore-plus
MDA writers for pymmcore-plus
Deepakkumar1998dob
C++ fundamentals and questions for beginners and intermediates. Raise Genuine PRs only. Your PRs will be accepted, keep patience. Star This Repo. You aren't allowed to Update README.md. Welcoming developers, content writers, and programming enthusiasts.
Iggys4ur
[Module 9] README.md Writer
zhangruibin
This repositry is for collect my markdown file,no only for java but for others.
asalwaysimani
A plugin for creative writers using Obsidian.md
brnstz
Converts Markdown .md files into Proper Manuscript Format for fiction writers (Shunn Format) as Word .docx
synbhwl
A very fast assignment/content writer. Can be used directly through browser url bar (check README). Uses Groq API, utilises prompts, and returns clean HTML in md format. Made with FastAPI.
SPotes22
Minimalist web-based Markdown editor with AI context powered by Gemini. Write in .md, preview HTML instantly, and get contextual insights without extra clutter. Perfect for focused writers who export to PDF cleanly.
teneplaysofficial
MarkView is a user-friendly Markdown editor with a split-screen setup for simultaneous editing and previewing. It includes `.md` file download options, making it a great tool for developers, writers, and content creators to format markdown content efficiently.
JordanCJ7
Complete Markdown Tutorial and Syntax Guide for Developers and Writers. Learn basic and advanced Markdown with examples, including GitHub-Flavored Markdown (GFM), code blocks, tables, and more. Ideal for writing technical documentation, README.md files, and static site content.
Vishnu877
Whether you know programming or not you can make your contribution in this repository. Raise Genuine PRs only. Your PRs will be accepted, keep patience. Star this Repo. You aren't allowed to Update README.md. Welcoming developers, content writers, and programming enthusiasts.
JamesClarke7283
A markdown editor with AI integration builtin.
q-scaerou
MD writer and reader