3
2
Fork
You've already forked guide
0

Adding the images and a new section #1

Merged
denizakdemir merged 5 commits from :main into main 2026年01月30日 15:03:37 +01:00
No description provided.
sena requested changes 2026年01月30日 13:19:34 +01:00
Dismissed
.gitignore Outdated
@ -15,3 +15,4 @@ pnpm-debug.log*
.direnv/
.DS_Store
src/content/docs/.obsidian/
Owner
Copy link

we should use

.obsidian/

instead, so that all directories are affected.

we should use ``` .obsidian/ ``` instead, so that all directories are affected.
sena marked this conversation as resolved
@ -4,3 +4,3 @@
---
[img:buFOSS.png] Welcome to Boğaziçi University Free Software and Open Knowledge Society! We will help you understand, use and contribute to free software and open knowledge resources, with specific focus on Boğaziçi. [Read more about us here.](https://bufoss.org)
<img src="https://guide.bufoss.org/_astro/bufoss.V7RqNp1f_19DKCs.svg" width="200" style="margin: 10px auto 20px; display: block;">
Owner
Copy link

this src is bad practice, as it's automatically generated and could change in the future.

the best practice would be to:

  • make this file MDX (01-welcome-to-bufoss.mdx) instead,
  • add the following line after line 4:
    import bufoss from '../../../assets/bufoss.svg';
    
  • replace the src attribute with src={bufoss.src}.

if this looks like too much work, we can cheat and just use src="https://guide.bufoss.org/favicon.svg" instead since it's the same image but static. but again, best practices are nicer.


one other thing about this line, is that i don't think the style attribute is necessary. unless you specifically want that much amount of top and bottom margin, we should use this pattern to center horizontally:

<div align="center">
 <img src="something" width="something" />
</div>

also, ideally, we want to include an alt text for every image, even if it's not that detailed. something like alt="buFOSS logo" would be enough. if you believe it's better to not provide in this context, you could do alt="" instead.

this `src` is bad practice, as it's automatically generated and could change in the future. the best practice would be to: - make this file MDX (`01-welcome-to-bufoss.mdx`) instead, - add the following line after line 4: ```js import bufoss from '../../../assets/bufoss.svg'; ``` - replace the `src` attribute with `src={bufoss.src}`. if this looks like too much work, we can cheat and just use `src="https://guide.bufoss.org/favicon.svg"` instead since it's the same image but static. but again, best practices are nicer. --- one other thing about this line, is that i don't think the `style` attribute is necessary. unless you specifically want that much amount of top and bottom margin, we should use this pattern to center horizontally: ```md <div align="center"> <img src="something" width="something" /> </div> ``` --- also, ideally, we want to include an alt text for every image, even if it's not that detailed. something like `alt="buFOSS logo"` would be enough. if you believe it's better to not provide in this context, you could do `alt=""` instead.
sena marked this conversation as resolved
@ -2,12 +2,13 @@
title: "Why Does FOSS Matter to a Student"
description: ""
---
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Free_and_open-source_software_logo_%282009%29.svg/960px-Free_and_open-source_software_logo_%282009%29.svg.png" width="200" style="margin: 10px auto 20px; display: block;" alt="Logo of FOSS">
Owner
Copy link

this image is natively a svg but you're using a converted png. src="https://upload.wikimedia.org/wikipedia/commons/3/31/Free_and_open-source_software_logo_%282009%29.svg" would have been better for scaling and all.


my points about aligning applies here as well :3

this image is natively a `svg` but you're using a converted png. `src="https://upload.wikimedia.org/wikipedia/commons/3/31/Free_and_open-source_software_logo_%282009%29.svg"` would have been better for scaling and all. --- my points about aligning applies here as well :3
sena marked this conversation as resolved
@ -2,8 +2,9 @@
title: "The FOSS Landscape Beyond Software"
description: "What else is there?"
---
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/78/Definition_of_Free_Cultural_Works_logo_notext.svg/250px-Definition_of_Free_Cultural_Works_logo_notext.svg.png" width="200" style="margin: 10px auto 20px; display: block;" alt="The Logo of Definition of Free Cultural Works">
Owner
Copy link

this one is also an svg originally, so src="https://upload.wikimedia.org/wikipedia/commons/7/78/Definition_of_Free_Cultural_Works_logo_notext.svg" would have been better.


my points about aligning applies here as well :3

this one is also an svg originally, so `src="https://upload.wikimedia.org/wikipedia/commons/7/78/Definition_of_Free_Cultural_Works_logo_notext.svg"` would have been better. --- my points about aligning applies here as well :3
sena marked this conversation as resolved
denizakdemir locked as Resolved and limited conversation to collaborators 2026年01月31日 12:48:30 +01:00
This discussion has been locked. Commenting is limited to contributors.
No reviewers
Labels
Clear labels
No items
No labels
Milestone
Clear milestone
No items
No milestone
Projects
Clear projects
No items
No project
Assignees
Clear assignees
No assignees
2 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
bufoss/guide!1
Reference in a new issue
bufoss/guide
No description provided.
Delete branch ":main"

Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?