Skip to content

Commit

Permalink
Removed remaining targets
Browse files Browse the repository at this point in the history
  • Loading branch information
latenitefilms committed Jul 29, 2023
1 parent 4f932ab commit bcf2222
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/generate-bug-tracker.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const generateMarkdown = (issues, path, sortFunc) => {
// build the new list
for (const issue of issues) {
const date = new Date(issue.created_at).toLocaleDateString("en-US", { day: 'numeric', month: 'long', year: 'numeric' });
content += `- [${issue.title} (${date})](${issue.html_url}){target="_blank"}\n`;
content += `- [${issue.title} (${date})](${issue.html_url})\n`;
}

fs.writeFileSync(path, content);
Expand Down
4 changes: 2 additions & 2 deletions .github/scripts/generate-wishlist.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const getIssues = async () => {

const generateMarkdown = (issues, path, sortFunc) => {
let content = '';

// sort issues according to provided sort function
issues.sort(sortFunc);

Expand All @@ -30,7 +30,7 @@ const generateMarkdown = (issues, path, sortFunc) => {
// build the new list
for (const issue of issues) {
const date = new Date(issue.created_at).toLocaleDateString("en-US", { day: 'numeric', month: 'long', year: 'numeric' });
content += `- [${issue.title} (${date})](${issue.html_url}){target="_blank"}\n`;
content += `- [${issue.title} (${date})](${issue.html_url})\n`;
}

fs.writeFileSync(path, content);
Expand Down
10 changes: 5 additions & 5 deletions docs/_includes/news/20230602.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ You can watch the trailer [here](https://www.youtube.com/watch?v=u9uRBf6o_IA).

**Tools Used:**

- [Sync-N-Link](/ecosystem/tools/#sync-n-link-x){target="_blank"} - creating Sync Clips with Metadata
- [CommandPost](/ecosystem/tools/#commandpost){target="_blank"} - using **Titles to Keywords** for line-by-lines
- [Sync-N-Link](/ecosystem/tools/#sync-n-link-x) - creating Sync Clips with Metadata
- [CommandPost](/ecosystem/tools/#commandpost) - using **Titles to Keywords** for line-by-lines
- [Notion](https://www.notion.so) - to build a digital bulletin board, one scene one card
- [PostLab](/ecosystem/tools/#postlab){target="_blank"} - collaborating in 6 libraries on 4 workstations in 3 cities
- [X2Pro](/ecosystem/tools/#x2pro){target="_blank"} - send Audio to Soundpost
- [Producers Best Friend](/ecosystem/tools/#producers-best-friend){target="_blank"} - creating lists (ADR, VFX, Music, DI, Motion Design)
- [PostLab](/ecosystem/tools/#postlab) - collaborating in 6 libraries on 4 workstations in 3 cities
- [X2Pro](/ecosystem/tools/#x2pro) - send Audio to Soundpost
- [Producers Best Friend](/ecosystem/tools/#producers-best-friend) - creating lists (ADR, VFX, Music, DI, Motion Design)

**Screenshots:**

Expand Down
2 changes: 1 addition & 1 deletion docs/camera-formats.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ You can find the full list of Cameras supported by Final Cut Pro [on Apple's sit
---

!!!
Is there a camera format missing? [Make an edit!](/contribute/){target="_blank"}
Is there a camera format missing? [Make an edit!](/contribute/)
!!!

---
Expand Down
10 changes: 2 additions & 8 deletions docs/contribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ For example, each time you make a pull request, our [fancy GitHub Action](https:
- Looks at all the individual **Sponsors** in [this folder](https://github.com/CommandPost/FCPCafe/tree/main/docs/_includes/sponsors), and uses them on the [Latest News](/) page.
- Looks at all the individual **Tools** in [this folder](https://github.com/CommandPost/FCPCafe/tree/main/docs/_includes/tools), and generates an alphabetical list of them for the [Tools](/ecosystem/tools/) page.
- Looks at all the individual **Workflow Extensions** in [this folder](https://github.com/CommandPost/FCPCafe/tree/main/docs/_includes/workflow-extensions), and generates an alphabetical list of them for the [Workflow Extensions](/ecosystem/workflowextensions/) page.
- Looks at all the **Latest News** items and generates an [RSS feed](/rss.xml){target="_blank"}
- Looks at all the **Latest News** items and generates an [RSS feed](/rss.xml)

This means, if you want to add a Tool, Motion Template, Workflow Extension, News item, etc. you can just add a new markdown file in that folder, and once the pull request is approved, everything will be updated automagically.

Expand Down Expand Up @@ -194,13 +194,7 @@ You can learn more [here](https://docs.github.com/en/codespaces/the-githubdev-we

All external links should open in a new tab/window.

The trick is to add `{target="_blank"}` at the end of the link.

Here's an example of how to do this in Markdown:

```
[Sync-N-Link](/tools/#sync-n-link-x){target="_blank"}
```
This is handled automatically by Retype.

---

Expand Down

0 comments on commit bcf2222

Please sign in to comment.