{"id":13649104,"url":"https://github.com/orgapp/swift-org","last_synced_at":"2025-05-06T18:50:03.983Z","repository":{"id":50782746,"uuid":"66833258","full_name":"orgapp/swift-org","owner":"orgapp","description":"org-mode with swift","archived":false,"fork":false,"pushed_at":"2021-05-29T20:02:43.000Z","size":238,"stargazers_count":164,"open_issues_count":3,"forks_count":9,"subscribers_count":16,"default_branch":"master","last_synced_at":"2025-04-07T09:38:49.556Z","etag":null,"topics":["org-mode","swift"],"latest_commit_sha":null,"homepage":null,"language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/orgapp.png","metadata":{"files":{"readme":"README.org","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-08-29T10:14:16.000Z","updated_at":"2024-11-28T14:12:02.000Z","dependencies_parsed_at":"2022-08-24T11:10:59.467Z","dependency_job_id":null,"html_url":"https://github.com/orgapp/swift-org","commit_stats":null,"previous_names":["xiaoxinghu/swift-org"],"tags_count":30,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orgapp%2Fswift-org","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orgapp%2Fswift-org/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orgapp%2Fswift-org/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orgapp%2Fswift-org/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/orgapp","download_url":"https://codeload.github.com/orgapp/swift-org/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252750285,"owners_count":21798684,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["org-mode","swift"],"created_at":"2024-08-02T01:04:46.921Z","updated_at":"2025-05-06T18:50:03.962Z","avatar_url":"https://github.com/orgapp.png","language":"Swift","funding_links":[],"categories":["Swift"],"sub_categories":[],"readme":"#+TITLE: SwiftOrg\n\n* org-mode Parser for Swift\n\n  [[https://travis-ci.org/xiaoxinghu/swift-org.svg?branch=master]]\n  [[https://img.shields.io/github/license/mashape/apistatus.svg?maxAge=2592000]]\n  [[https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat]]\n  [[https://img.shields.io/github/release/xiaoxinghu/swift-org.svg?maxAge=2592000]]\n\n  [[http://orgmode.org/][org-mode]] is awesome. This is the first step to bring it to iOS, (arguably) the\n  most popular platform on the planet.\n\n* Usage\n  An simple example will explain everything.\n\n  #+BEGIN_SRC swift\n    import SwiftOrg\n\n    let lines = [\n        \"* TODO head line\",\n        \"  A normal line here.\",\n    ]\n    let parser = OrgParser()\n    let doc = try parser.parse(lines: lines)\n  #+END_SRC\n\n* Supported Syntax (so far) [17/19]\n** DONE Affiliated Keywords (aka In Buffer Settings)\n   CLOSED: [2016-09-03 Sat 12:47]\n\n   #+BEGIN_SRC org\n   #+TITLE: Hello World\n   #+OPTIONS: Hello World\n   #+END_SRC\n\n** DONE Headlines\n   CLOSED: [2016-09-03 Sat 12:47]\n   #+BEGIN_SRC org\n   * Head Line 1\n   * Head Line 2\n   ** Head Line 2.1\n   *** Head Line 2.1.1\n   #+END_SRC\n\n** DONE TODO Keywords\n   CLOSED: [2016-12-31 Sat 14:12]\n   #+BEGIN_SRC org\n     ,#+TODO: TODO NEXT | DONE\n\n     ,* TODO Head Line 1\n     ,* NEXT Head Line 2\n     ,** DONE Head Line 2.1\n        CLOSED: [2016-12-31 Sat 14:12]\n   #+END_SRC\n\n** DONE [#A] Priority\n   CLOSED: [2016-09-30 Fri 12:17]\n   #+BEGIN_SRC org\n     ,* TODO [#A] Top Priority Task\n     ,* [#B] Medium Priority Item\n     ,* TODO [#c] Low Priority Task\n     ,* TODO [#D] No Priority Task\n   #+END_SRC\n\n** DONE Tags\n   CLOSED: [2016-09-30 Fri 14:52]\n\n   #+BEGIN_SRC org\n     ,* Section with One Tag                                                :tag1:\n     ,* Section with multiple tags                                 :tag1:tag2:tag3:\n   #+END_SRC\n\n** DONE Planning\n   CLOSED: [2017-01-09 Mon 16:09]\n\n   #+BEGIN_SRC org\n     ,* DONE Closed task\n       CLOSED: [2017-01-09 Mon 15:58]\n\n     ,* Scheduled task\n       SCHEDULED: \u003c2017-01-09 Mon\u003e\n\n     ,* TODO task that has a deadline\n       DEADLINE: \u003c2017-01-16 Mon +1w\u003e\n   #+END_SRC\n\n** DONE Paragraph\n   CLOSED: [2016-09-03 Sat 12:47]\n   Lines without *line breaker* becomes a *paragraph*.\n\n** DONE Emphasis\n   CLOSED: [2016-09-03 Sat 12:47]\n   #+BEGIN_SRC org\n   *bold*\n   /italic/\n   _underlined_\n   =verbatim=\n   ~code~\n   +strike-through+\n   #+END_SRC\n\n** DONE Link\n   CLOSED: [2016-09-03 Sat 12:47]\n   #+BEGIN_SRC org\n   [[google][https://www.google.com]]\n   #+END_SRC\n\n** DONE List\n   CLOSED: [2016-09-03 Sat 12:47]\n   #+BEGIN_SRC org\n   # ordered list\n   1. first\n   2) second\n   3. 3rd\n\n   # unordered list\n   - item\n   + item\n   * item\n\n   # nested list\n   - item\n     1. sub item\n     1) sub item\n   - item\n   #+END_SRC\n\n** DONE Horizontal rules\n   CLOSED: [2016-09-03 Sat 12:47]\n   #+BEGIN_SRC org\n   Above.\n   -----\n   Below\n   #+END_SRC\n\n** DONE Comment\n   CLOSED: [2016-09-03 Sat 12:47]\n   #+BEGIN_SRC org\n   # This is a comment.\n   #This is a regular line.\n   #+END_SRC\n\n** DONE Blocks\n   CLOSED: [2016-09-03 Sat 12:47]\n   #+BEGIN_SRC org\n   ,#+BEGIN_SRC javascript\n     Console.log(\"Hello Org.\")\n   ,#+END_SRC\n\n   ,#+BEGIN_QUOTE\n   Everything should be made as simple as possible,\n   but not any simpler -- Albert Einstein\n   ,#+END_QUOTE\n   #+END_SRC\n\n** DONE Drawer\n   CLOSED: [2016-09-20 Tue 22:38]\n   :PROPERTIES:\n   :END:\n\n   Drawer for headlines.\n\n   #+BEGIN_SRC org\n     ,* WAITING Talk to Jake\n       :PROPERTIES:\n       :CATEGORY: personal\n       :END:\n       :LOGBOOK:\n       - State \"WAITING\"    from \"TODO\"       [2016-09-20 Tue 22:41] \\\\\n         waiting for call from Jake\n       :END:\n   #+END_SRC\n\n** DONE Footnote\n   CLOSED: [2016-09-27 Tue 21:24]\n   #+BEGIN_SRC org\n   This is a footnote right here[fn:1]. And this is the rest.\n\n   [fn:1] The content of the footnote here.\n   #+END_SRC\n\n** DONE Checkbox\n   CLOSED: [2016-09-27 Tue 21:28]\n   Checkboxes in list items.\n   #+BEGIN_SRC org\n     - [X] item one checked\n     - [-] item two not checked\n     - [ ] item three not checked\n   #+END_SRC\n\n** DONE Table\n   CLOSED: [2017-01-31 Tue 20:15]\n   #+BEGIN_SRC org\n     | Name         | Species    | Gender | Role         |\n     |--------------+------------+--------+--------------|\n     | Bruce Wayne  | Human      | M      | Batman       |\n     | Clark Kent   | Kryptonian | M      | Superman     |\n     | Diana Prince | Amazonian  | F      | Wonder Woman |\n   #+END_SRC\n\n** TODO Clock\n\n** TODO Attachments\n\n* [#c] Maybe? [0/2]\n  - [ ] Latex Support\n  - [ ] Macros\n\n* TODO Performance Test\n\n* Contribute\n  SwiftOrg is written in Swift 3. So you need xcode 8 to be able to build it.\n** Setup\n   #+BEGIN_SRC bash\n     ./bin/setup\n     ./bin/test\n   #+END_SRC\n** TODO Release\n   To bump up version number.\n   #+BEGIN_SRC sh :results silent\n     agvtool new-marketing-version 0.7.9\n     sed -i.bak \"s/s\\.version = .*/s\\.version = '0\\.7\\.9'/\" SwiftOrg.podspec\n   #+END_SRC\n\n* License\n  Carthage is released under the [[https://github.com/xiaoxinghu/swift-org/blob/master/LICENSE][MIT LIcense]].\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Forgapp%2Fswift-org","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Forgapp%2Fswift-org","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Forgapp%2Fswift-org/lists"}