Expensify Help is mainly composed of static HTML (.html
) and Markdown (.md
) files. We use Jekyll to generate a static site from those HTML and Markdown files.
- Clone and/or pull the App repo to your local machine.
- Check the requirements to install Jekyll.
- Install Jekyll locally by running:
gem install bundler
cd docs
bundle install
- On newer versions of macOS/Xcode you may see a
bundle install
error similar to the following. You can workaround it by symlinking whichever version ofuniversal-darwin
you have. More info in this SO.
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/include/ruby-2.6.0/universal-darwin21/ruby/config.h', needed by arena.o'
cd /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/include/ruby-2.6.0/
ln -sf universal-darwin22 universal-darwin21
- Open the Terminal command line in macOS.
- In the root folder of the repository, execute
npm run createDocsRoutes
to generate the file which contains the routes for the articles (without this, the site will appear empty). - Navigate to the
docs
folder in the command line. - Run
bundle exec jekyll serve --livereload
.- Note: If you see an error like
Unable to load the EventMachine C Extension...
, try runninggem uninstall eventmachine && bundle install
. If that doesn't work just removing the--livereload
flag should work.
- Note: If you see an error like
- Modify a
.html
or.md
file and save your changes, and the browser should quickly auto-refresh.
To visit the site on the Android emulator, go to 10.0.2.2:4000
.
If you're getting an error page that says "Refused to connect", try running adb reverse tcp:4000 tcp:4000
with your emulator open.
The docs folder will contain the following main folders:
- _layouts: Contains HTML templates used by Jekyll to create pages in the static site. For now, it has only one file (default.html) which will render the common HTML elements and the assets on every page.
- _includes: Contains HTML content that can be reused on different pages. Includes can accept parameters and be nested, so they are quite powerful.
- assets: Contains the three sub-folders css, images, and js. The css folder can contain either .css or .sass files (where SASS files will be processed by Jekyll and it will generate a CSS file in an output folder also generated by Jekyll).
- hubs: Contains hubs that display various related articles, optionally grouped by sub-topic within the hub.
- articles: Contains sub-folders for each hub and each of them will contain all the articles related to that hub.
- _data: Contains custom global data, available anywhere via liquid with the syntax
site.data.<filename>
. Notably, there is a file called routes.yml in there which defines the structure of the app and metadata for its pages. - _site: The output folder that contains the generated HTML files. This is the default name by Jekyll but can be changed. Files in here are generated and should not be manually edited.
- index.html: The main homepage content.
More details about the Jekyll project structure can be found here. Note that all html files in this project support the use of the liquid template language.
- Platform: Expensify Classic and New Expensify are the two platforms. They are shown on the homepage.
- Hub: A hub is a collection of related articles. It comprises of:
- Article: The document that explains some feature.
- Subcategory: A narrower collection of related articles.
- Hub: A hub is a collection of related articles. It comprises of:
To put it all together, this is the mental model that you should have.
- Expensify Classic (Platform)
- Getting Started (Hub)
- Invite Members (Article)
- Security (Article)
- Playbooks (Subcategory)
- Small business guide (Article)
- Big business guide (Article)
- Getting Started (Hub)
Let's assume that we want to create a new hub called Billing and Subscriptions inside the platform New Expensify.
- Open
docs/_data/_routes.yml
- Under New Expensify add
- href: billing-and-subscriptions
title: Billing & Subscriptions
icon: /assets/images/subscription.svg
description: Adjust billing...
- Use an existing icon, or a new one by adding it to
docs/assets/images/
Link the hub.
- Go to
docs/new-expensify/hubs
- Create a new folder using the hub name
billing-and-subscriptions
- Inside the newly created folder, create
index.html
with the following content.
---
layout: default
title: Billing & Subscriptions
---
{% include hub.html %}
Add articles.
- Go to
docs/articles/new-expensify
- Create a new folder with the hub name
billing-and-subscriptions
You are now ready to start adding articles and subcategories inside the hub 🎉
Let's assume we want to delete the hub integrations
inside the platform Expensify Classic.
- Open
docs/_data/_routes.yml
- Find the hub integrations and delete its href, icon, title and description.
- Go to
docs/expensify-classic/hubs/
- Delete the folder with your hub name and all its contents. eg:
integrations/
Delete all articles for the hub
- Go to
docs/articles/expensify-classic/
- Delete the folder with your hub name and all its contents. eg:
integrations/
If you need help with how to do this on github. Follow this slack thread 🧵 in #expensifyhelp
Let's assume that we need to rename the hub get-paid-back
to payments
for the platform New Expensify
- Go to
docs/new-expensify/hubs/
- Rename the folder
get-paid-back/
topayments
- Go to
docs/articles/new-expensify/
- Rename the folder
get-paid-back/
topayments
- Open docs/_data/_routes.yml
- Rename the href
get-paid-back
topayments
- Change
title
toPayments
- Open
docs/_data/_routes.yml
- Under the platform and hub, replace the icon link
assets/images/send.svg
. - Use an existing icon, or a new one by adding it to
docs/assets/images/
Creating a new subcategory is as easy as creating a new folder. For example, if we want to create a new subcategory HR Integrations
for the hub Integrations
and platform Expensify Classic
- Go to
docs/articles/expensify-classic/integrations
- Create a new folder
hr-integrations
You can now begin adding articles inside the subcategory hr-integrations/
.
Copy the template file into the correct subdirectory of docs/articles
. For example, if the article belongs in the Bank Accounts
hub for the platform Expensify Classic
, then copy the template into docs/articles/expensiyfy-classic/bank-accounts
directory.
Next, rename the copy with the name of the article title, i.e. Connect-ANZ.md
. It is important that the article has .md
extension (you can use dashes for spaces in the file name if it's needed). The dashes will be removed in the generated site page.
The sections of the article will be filled and nested automatically in the LHN, just ensure to use the heading markdown tags correctly.
- Drag and drop your image inside
docs/assets/images/
- Use the image in your article by adding the markdown
![Image description here]({{site.url}}/assets/images/your_image_name_here.png){:width="100%"}
- Note to replace
your_image_name_here
with the name of image that you uploaded. - Note to replace
Image description here
with an apt description of the image.
If you're unfamiliar with github branches, PRs and confused how to add images and article in the same PR, head to this slack thread 🧵 in #expensifyhelp
.
At the top of template file we're going to find a few variables that will help us to define the meta-description of the article for SEO:
---
title: The title of the post, page, or document
description: A short description of the page's content
image: (Optional) URL to an image associated with the post, page, or document (e.g., /assets/page-pic.jpg)
---
Just update the content for each variable accordingly or remove it if the information is not available. More details here.
Assume that we want to rename the article The Free Plan
to Freemium Features
for the hub billing and plan types
in New Expensify platform.
- Go to
docs/articles/new-expensify/billing-and-plan-types
- Rename
The-Free-Plan.md
toFreemium-Features.md
. Use dashes for spaces in the file name.
Note: It is important that the file has .md
extension.
This site is hosted on Cloudflare pages. Whenever code is merged to main, the github action deployExpensifyHelp
will run.
It will generate routes.yml using the script createDocsRoutes
, build the Jekyll site housed in the /docs
directory and deploy it straight to production. The help site is publicly discoverable at https://help.expensify.com/