Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8770797
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T17:37:47+00:00 2026-06-13T17:37:47+00:00

For example, say I’d like to generate this array: random_numbers = [] 1000.times {

  • 0

For example, say I’d like to generate this array:

random_numbers = []
1000.times { random_numbers << rand(2) }

And pass it to a template, so that I can access it from Liquid:

{% for num in random_numbers %} 
  ... here I'd use logic around the number to generate something.
{% endfor %}

Note: I want to generate the array dynamically in Ruby. And inside the template, I want an array that I can iterate with, I don’t want a string.

How can this be done in Jekyll?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T17:37:48+00:00Added an answer on June 13, 2026 at 5:37 pm

    Well, you’d need a plugin: https://github.com/mojombo/jekyll/wiki/Plugins

    If you were happy to put the logic in your plugin, you could do it in a custom Liquid::Tag, but your requirements sound like they’d need a generator, which is OK. I just threw this together and it seems to work as you’d like:

    module Jekyll
    
    class RandomNumberGenerator < Generator
    
      def generate(site)
        site.pages.each do |page|
          a = Array.new
          1000.times { a << rand(2) }
          page.data['random_numbers'] = a
        end
      end
    
    end
    
    end
    

    that should go in your _plugins/ directory (as rand.rb or something). In your templates, you can then do

    <ul>
        {% for number in page.random_numbers %}
            <li>{{ number }}</li>
        {% endfor %}
    </ul>
    

    Or whatever you’d like. I’ve assumed that you want a different set of numbers for each page – but if you want one set for the whole site, you could easily produce the array once and then either attach it to the site object or to every page.

    This won’t work with the automatic generation on Github Pages (they don’t allow custom plugins, for obvious reasons), but that shouldn’t be a problem – even if you’re using Github Pages there are plenty of workarounds.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

for example say i have an object array called $list looks like this: <(stdClass)#16
For example: Say I searched something on the Walmart homepage . Like this .
Currently I have a timestamp for example say, 2012-06-23 14:24:07.975 and two times -
i have problem use link_to_remote link_to_remote document example say link_to_remote Delete this post, :update
can you get the last or newly added element in std::set? for example say
For example lets say I have a JSON object that contains states and cities.
To use as an example: lets say that I have 2 EditText s and
As an example say I have a class foo that does not have a
I have a very simple class that derives off of the example Say class
Is there something like Python with context manager in Java? For example say I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.