Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,17 @@ Marker is a markdown editor for linux made with GTK+-3.0

### Build Instructions

**NOTE: MAKE SURE TO CLEAN THE EXTENSIONS BEFORE UPDATING: rm /usr/share/com.github.fabiocolacio.marker/extensions/**
**NOTE: MAKE SURE TO CLEAN THE EXTENSIONS BEFORE UPDATING:

```bash
rm /usr/share/com.github.fabiocolacio.marker/extensions/**
```

**Note:** For a more stable experience, users are recommended download
[release tarball](https://github.com/fabiocolacio/Marker/releases) rather
than cloning from master.

```
```bash
$ git clone https://github.com/fabiocolacio/Marker.git
$ cd Marker
$ git submodule update --init --recursive
Expand Down
2 changes: 2 additions & 0 deletions src/marker-exporter.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
#include <stdlib.h>
#include <string.h>

#include <glib/gi18n.h>

#include "marker.h"
#include "marker-utils.h"
#include "marker-string.h"
Expand Down
1 change: 1 addition & 0 deletions src/marker-window.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

#include <glib.h>
#include <glib/gprintf.h>
#include <glib/gi18n.h>

#define MIN_DELTA_T 1

Expand Down